/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#07111F;
    color:white;
    font-family:Poppins,sans-serif;
    overflow-x:hidden;
}

/* ===========================
   BACKGROUND
=========================== */

.background{

    position:fixed;

    width:100%;

    height:100%;

    overflow:hidden;

    z-index:-1;

}

.grid{

    position:absolute;

    width:100%;

    height:100%;

    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:.35;

}

.blob{

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    filter:blur(130px);

    opacity:.25;

    animation:float 12s ease-in-out infinite;

}

.blob1{

    background:#1E90FF;

    top:-120px;

    left:-100px;

}

.blob2{

    background:#00D4FF;

    right:-100px;

    bottom:-100px;

    animation-delay:5s;

}

/* ===========================
   NAVBAR
=========================== */

nav{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 10%;

    position:fixed;

    top:0;

    backdrop-filter:blur(14px);

    background:rgba(7,17,31,.65);

    z-index:1000;

}

.logo{

    font-size:30px;

    font-weight:700;

    color:#4DA3FF;

}

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:#4DA3FF;

}

/* ===========================
   HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 10%;

    gap:70px;

}

.hero-text{

    flex:1;

}

.hero h1{

    font-size:72px;

    line-height:1.08;

    margin-bottom:25px;

}

.hero span{

    color:#4DA3FF;

}

.hero p{

    font-size:22px;

    color:#C2CBD8;

    line-height:1.8;

    margin-bottom:45px;

}

.hero a{

    display:inline-block;

    padding:18px 40px;

    border-radius:50px;

    background:#4DA3FF;

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.hero a:hover{

    transform:translateY(-5px);

    box-shadow:0 0 30px rgba(77,163,255,.5);

}

/* ===========================
   PHONE
=========================== */

.phone{

    width:340px;

    height:680px;

    border-radius:42px;

    padding:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    0 0 60px rgba(77,163,255,.25);

    animation:phoneFloat 5s ease-in-out infinite;

    transition:.45s;

}

.phone:hover{

    transform:
    rotateY(8deg)
    rotateX(5deg)
    scale(1.03);

}

.screen{

    width:100%;

    height:100%;

    background:#0D1B2A;

    border-radius:30px;

    padding:22px;

}

.notch{

    width:120px;

    height:24px;

    background:#07111F;

    border-radius:20px;

    margin:0 auto 28px auto;

}

.message{

    padding:16px;

    border-radius:18px;

    margin-bottom:18px;

    line-height:1.5;

    font-size:15px;

}

.scam{

    background:#6E1B25;

}

.safe{

    background:#0B5D47;

}

.ai-card{

    background:#11253E;

    border-left:4px solid #4DA3FF;

    border-radius:18px;

    padding:18px;

    margin-bottom:18px;

}

.ai-title{

    color:#63B3FF;

    font-weight:600;

    margin-bottom:10px;

}

.ai-card p{

    color:#C6D2DF;

    font-size:14px;

    margin-top:10px;

    line-height:1.6;

}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-70px);

}

100%{

transform:translateY(0);

}

}

@keyframes phoneFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}
.ai-card{

    opacity:0;

    transform:translateY(25px);

}
.scam{

    opacity:0;

    transform:translateY(30px);

}
.scam.detected{

    animation: scamPulse 1.5s ease-in-out infinite;

}


@keyframes scamPulse{

    0%{

        box-shadow:0 0 0 rgba(255,80,80,0);

    }


    50%{

        box-shadow:0 0 25px rgba(255,80,80,.55);

    }


    100%{

        box-shadow:0 0 0 rgba(255,80,80,0);

    }

}
.risk-details{

    margin-top:18px;

    font-size:14px;

    line-height:1.6;

    color:#D6E2F0;

    opacity:0;

    animation:detailsAppear .8s ease forwards;

    animation-delay:5.6s;

}


@keyframes detailsAppear{

    from{

        opacity:0;

        transform:translateY(15px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ===========================
   WHY SCAMIFY SECTION
=========================== */


.why-scamify{

    min-height:100vh;

    padding:100px 10%;

    text-align:center;

}


.why-scamify h2{

    font-size:55px;

    margin-bottom:25px;

}


.why-scamify span{

    color:#4DA3FF;

}


.section-text{

    max-width:800px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

    color:#BFC8D6;

}


.problem-cards{

    display:flex;

    justify-content:center;

    gap:30px;

    margin-top:70px;

}


.problem-card{

    width:300px;

    padding:35px;

    border-radius:25px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

    transition:.35s;

}


.problem-card:hover{

    transform:translateY(-12px);

    box-shadow:0 0 35px rgba(77,163,255,.2);

}


.problem-card h3{

    margin:20px 0;

    font-size:24px;

}


.problem-card p{

    color:#C2CBD8;

    line-height:1.7;

}
.problem-card{

    opacity:0;

    transform:translateY(50px);

    transition:0.8s ease;

}


.problem-card.show{

    opacity:1;

    transform:translateY(0);

}
/* ===========================
   COMPARISON SECTION
=========================== */


.comparison{

    min-height:100vh;

    padding:120px 10%;

    text-align:center;

}


.comparison h2{

    font-size:55px;

    margin-bottom:25px;

}


.compare-container{

    display:flex;

    justify-content:center;

    gap:50px;

    margin-top:70px;

}


.compare-card{

    width:380px;

    padding:35px;

    border-radius:30px;

    transition:.5s;

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

}


.danger{

    background:rgba(255,80,80,.08);

    box-shadow:
    0 0 40px rgba(255,80,80,.08);

}


.safe-side{

    background:rgba(77,163,255,.08);

    box-shadow:
    0 0 40px rgba(77,163,255,.12);

}


.compare-card:hover{

    transform:translateY(-12px) scale(1.02);

}


.compare-card:hover{

    transform:translateY(-10px);

}


.compare-card h3{

    font-size:28px;

    margin-bottom:30px;

}


.fake-phone{

    background:#0D1B2A;

    border-radius:25px;

    padding:20px;

    min-height:260px;

}


.fake-message{

    background:#3A1B25;

    padding:18px;

    border-radius:18px;

    text-align:left;

    line-height:1.5;

}


.mini-ai{

    margin-top:20px;

    padding:18px;

    border-radius:18px;

    background:#11253E;

    border-left:4px solid #4DA3FF;

    text-align:left;

    color:#DCE8F5;

}


.compare-card p{

    margin-top:25px;

    color:#C2CBD8;

    line-height:2;

}
/* ===========================
   COMPARISON GLOW
=========================== */


.danger .fake-message{

    animation:dangerPulse 2.5s infinite;

}


.safe-side .mini-ai{

    animation:aiGlow 3s infinite;

}



@keyframes dangerPulse{


    0%{

        box-shadow:0 0 0 rgba(255,80,80,0);

    }


    50%{

        box-shadow:0 0 25px rgba(255,80,80,.35);

    }


    100%{

        box-shadow:0 0 0 rgba(255,80,80,0);

    }

}



@keyframes aiGlow{


    0%{

        box-shadow:0 0 0 rgba(77,163,255,0);

    }


    50%{

        box-shadow:0 0 25px rgba(77,163,255,.35);

    }


    100%{

        box-shadow:0 0 0 rgba(77,163,255,0);

    }

}
/* ===========================
   COMPARISON REVEAL
=========================== */


.comparison-left{

    opacity:0;

    transform:translateX(-80px);

}


.comparison-right{

    opacity:0;

    transform:translateX(80px);

}


.comparison-left.show,
.comparison-right.show{

    opacity:1;

    transform:translateX(0);

}
.compare-container{

    align-items:flex-start;

}


.compare-card{

    display:flex;

    flex-direction:column;

}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 80px 10%;
    gap: 50px;
}


.hero-text {
    max-width: 550px;
}


.hero-text h1 {

    font-size: 55px;
    line-height: 1.1;

    color: #111;
}


.hero-text p {

    font-size: 20px;
    color: #555;

    margin-top: 20px;
}


.hero-buttons {

    margin-top: 35px;
    display: flex;
    gap: 20px;
}


.download-btn {

    background: #2563eb;
    color:white;

    border:none;
    padding:15px 30px;

    border-radius:30px;

    font-size:17px;
    cursor:pointer;
}


.learn-btn {

    background:white;

    border:2px solid #2563eb;

    color:#2563eb;

    padding:15px 30px;

    border-radius:30px;

    font-size:17px;
}


/* ===========================
   PHONE MESSAGE FIX V2
=========================== */


.screen{

    overflow-y:hidden;

}


.messages-container{

    display:flex;

    flex-direction:column;

    gap:12px;

}



.message{

    padding:12px;

    border-radius:18px;

    font-size:13px;

    line-height:1.4;

    width:100%;

    max-width:100%;

    overflow-wrap:break-word;

}


/* Red scam message */

.scam{

    background:#6E1B25 !important;

    color:white;

}


/* Blue AI card */

.ai-card{

    background:#11253E !important;

    border-left:4px solid #4DA3FF;

    padding:14px;

}


/* Green safe message */

.safe{

    background:#0B5D47 !important;

    color:white;

}
/* ===========================
   SCAMIFY COMPARISON FIX
=========================== */


.compare-container{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:50px;

    margin-top:70px;

    flex-wrap:wrap;

}



.compare-card{

    width:380px;

    padding:35px;

    border-radius:30px;

    text-align:center;

    transition:.5s;

}


/* Without Scamify */

.without-scamify{

    background:rgba(255,60,60,.12);

    border:1px solid rgba(255,80,80,.4);

    box-shadow:0 0 40px rgba(255,50,50,.15);

    opacity:0;

    transform:translateX(-100px);

}



.without-scamify.show{

    opacity:1;

    transform:translateX(0);

}



/* With Scamify */

.with-scamify{

    background:rgba(50,220,120,.12);

    border:1px solid rgba(50,220,120,.4);

    box-shadow:0 0 40px rgba(50,220,120,.15);

    opacity:0;

    transform:translateX(100px);

}



.with-scamify.show{

    opacity:1;

    transform:translateX(0);

}



.without-scamify h3{

    color:#ff7070;

}



.with-scamify h3{

    color:#55ff99;

}



.compare-card:hover{

    transform:translateY(-10px) scale(1.03);

}


.compare-card p{

    color:#C2CBD8;

    line-height:2;

}
/* HERO TITLE FINAL FIX */

.hero-text h1{

    font-size:72px !important;
    line-height:1.08;
    color:white;

}


.hero-text h1 .main-white{

    color:white !important;

}


.hero-text h1 .main-blue{

    color:#4DA3FF !important;

}
/* AI CARD TEXT FIX */

.ai-card p,
.risk-details{

    color:white !important;

    font-size:16px;

    line-height:1.6;

}


.risk-details{

    font-weight:500;

}
/* AI PHONE TEXT FINAL FIX */

.phone .ai-card p,
.phone .ai-card .risk-details,
.phone .ai-card .risk-details *{

    color:white !important;

    font-size:16px !important;

    line-height:1.6 !important;

}
/* AI PHONE TEXT */

#phoneAnalysisText,
#riskDetails,
#riskDetails b{

    color:white !important;

    font-size:16px !important;

}
/* FORCE AI TEXT COLOR */

#phoneAnalysisText,
#riskDetails,
#riskDetails *,
.ai-card p,
.ai-card p *,
.ai-card {

    color: white !important;

    font-size: 16px !important;

}
/* ===========================
   FEATURES SECTION
=========================== */


.features{

    min-height:100vh;

    padding:120px 10%;

    text-align:center;

}



.features h2{

    font-size:55px;

    margin-bottom:25px;

}



.features span{

    color:#4DA3FF;

}



.feature-cards{

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:30px;

    margin-top:70px;

}



.feature-card{

    padding:35px;

    border-radius:25px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

    transition:.35s;

}



.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 0 35px rgba(77,163,255,.25);

}



.feature-card h3{

    margin:20px 0;

    font-size:24px;

}



.feature-card p{

    color:#C2CBD8;

    line-height:1.7;

}


/* FEATURE ANIMATION */


.feature-card{

    opacity:0;

    transform:translateY(50px);

    animation:featureReveal .8s ease forwards;

}


.feature-card:nth-child(1){

    animation-delay:.1s;

}


.feature-card:nth-child(2){

    animation-delay:.2s;

}


.feature-card:nth-child(3){

    animation-delay:.3s;

}


.feature-card:nth-child(4){

    animation-delay:.4s;

}



@keyframes featureReveal{


    from{

        opacity:0;

        transform:translateY(50px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* MOBILE */

@media(max-width:900px){


    .feature-cards{

        grid-template-columns:1fr;

    }


}
/* ===========================
   HOW IT WORKS SECTION
=========================== */


.how-it-works{

    min-height:100vh;

    padding:120px 10%;

    text-align:center;

}



.how-it-works h2{

    font-size:55px;

    margin-bottom:25px;

}



.how-it-works span{

    color:#4DA3FF;

}



.steps-container{

    display:flex;

    justify-content:center;

    gap:40px;

    margin-top:70px;

}



.step-card{

    width:320px;

    padding:40px 30px;

    border-radius:30px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

    transition:.35s;

}



.step-card:hover{

    transform:translateY(-12px);

    box-shadow:0 0 35px rgba(77,163,255,.25);

}



.step-icon{

    font-size:45px;

    margin-bottom:20px;

}



.step-card h3{

    font-size:26px;

    margin-bottom:20px;

}



.step-card p{

    color:#C2CBD8;

    line-height:1.7;

}



/* SLIDE IN ANIMATION */


.step-card{

    opacity:0;

    transform:translateY(60px);

    animation:stepReveal .8s ease forwards;

}



.step-card:nth-child(1){

    animation-delay:.2s;

}


.step-card:nth-child(2){

    animation-delay:.4s;

}


.step-card:nth-child(3){

    animation-delay:.6s;

}



@keyframes stepReveal{


    from{

        opacity:0;

        transform:translateY(60px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* MOBILE */

@media(max-width:900px){


    .steps-container{

        flex-direction:column;

        align-items:center;

    }


}
/* ===========================
   AI ADVISOR SECTION
=========================== */


.ai-advisor{

    min-height:100vh;

    padding:120px 10%;

    text-align:center;

}



.ai-advisor h2{

    font-size:55px;

    margin-bottom:25px;

}



.ai-advisor span{

    color:#4DA3FF;

}



.chat-box{

    max-width:700px;

    margin:70px auto 0;

    display:flex;

    flex-direction:column;

    gap:30px;

}



/* USER MESSAGE */


.chat{

    padding:25px;

    border-radius:25px;

    text-align:left;

    font-size:17px;

    line-height:1.7;

}



.user-message{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

    align-self:flex-start;

}



/* AI MESSAGE */


.ai-message{

    background:rgba(77,163,255,.12);

    border:1px solid rgba(77,163,255,.25);

    border-left:5px solid #4DA3FF;

    align-self:flex-end;

    box-shadow:0 0 35px rgba(77,163,255,.15);

}



.ai-message b{

    color:#4DA3FF;

}



/* ANIMATION */


.chat{

    opacity:0;

    transform:translateY(50px);

    animation:chatReveal .8s ease forwards;

}



.ai-message{

    animation-delay:.3s;

}



@keyframes chatReveal{


    from{

        opacity:0;

        transform:translateY(50px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* MOBILE */

@media(max-width:900px){


    .ai-advisor h2{

        font-size:40px;

    }


}
/* ===========================
   PRIVACY SECTION
=========================== */


.privacy{

    min-height:100vh;

    padding:120px 10%;

    text-align:center;

}



.privacy h2{

    font-size:55px;

    margin-bottom:25px;

}



.privacy span{

    color:#4DA3FF;

}



.privacy-cards{

    display:flex;

    justify-content:center;

    gap:35px;

    margin-top:70px;

}



.privacy-card{

    width:320px;

    padding:40px 30px;

    border-radius:30px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

    transition:.35s;

}



.privacy-card:hover{

    transform:translateY(-12px);

    box-shadow:0 0 35px rgba(77,163,255,.25);

}



.privacy-icon{

    font-size:45px;

    margin-bottom:20px;

}



.privacy-card h3{

    font-size:26px;

    margin-bottom:20px;

}



.privacy-card p{

    color:#C2CBD8;

    line-height:1.7;

}



/* REVEAL ANIMATION */


.privacy-card{

    opacity:0;

    transform:translateY(50px);

    animation:privacyReveal .8s ease forwards;

}


.privacy-card:nth-child(1){

    animation-delay:.2s;

}


.privacy-card:nth-child(2){

    animation-delay:.4s;

}


.privacy-card:nth-child(3){

    animation-delay:.6s;

}



@keyframes privacyReveal{


    from{

        opacity:0;

        transform:translateY(50px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* MOBILE */

@media(max-width:900px){


    .privacy-cards{

        flex-direction:column;

        align-items:center;

    }


}
/* ===========================
   FAQ SECTION
=========================== */


.faq{

    min-height:100vh;

    padding:120px 10%;

    text-align:center;

}



.faq h2{

    font-size:55px;

    margin-bottom:25px;

}



.faq span{

    color:#4DA3FF;

}



.faq-container{

    max-width:850px;

    margin:70px auto 0;

    display:flex;

    flex-direction:column;

    gap:25px;

}



.faq-card{

    padding:30px;

    border-radius:25px;

    text-align:left;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

    transition:.35s;

}



.faq-card:hover{

    transform:translateY(-8px);

    box-shadow:0 0 30px rgba(77,163,255,.2);

}



.faq-card h3{

    font-size:22px;

    margin-bottom:15px;

}



.faq-card p{

    color:#C2CBD8;

    line-height:1.7;

}



/* FAQ ANIMATION */


.faq-card{

    opacity:0;

    transform:translateY(40px);

    animation:faqReveal .8s ease forwards;

}



.faq-card:nth-child(1){

    animation-delay:.1s;

}


.faq-card:nth-child(2){

    animation-delay:.2s;

}


.faq-card:nth-child(3){

    animation-delay:.3s;

}


.faq-card:nth-child(4){

    animation-delay:.4s;

}



@keyframes faqReveal{


    from{

        opacity:0;

        transform:translateY(40px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ===========================
   DOWNLOAD CTA SECTION
=========================== */


.download{

    min-height:70vh;

    margin:80px 10%;

    padding:80px 40px;

    text-align:center;

    border-radius:40px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(25px);

    box-shadow:0 0 50px rgba(77,163,255,.15);

}



.download h2{

    font-size:55px;

    margin-bottom:25px;

}



.download span{

    color:#4DA3FF;

}



.download p{

    max-width:700px;

    margin:0 auto 40px;

    color:#C2CBD8;

    font-size:20px;

    line-height:1.8;

}



.download-button{

    display:inline-block;

    padding:18px 45px;

    border-radius:50px;

    background:#4DA3FF;

    color:white;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}



.download-button:hover{

    transform:translateY(-6px);

    box-shadow:0 0 35px rgba(77,163,255,.5);

}


/* CTA ANIMATION */


.download{

    animation:downloadGlow 3s infinite;

}



@keyframes downloadGlow{


    0%{

        box-shadow:0 0 30px rgba(77,163,255,.1);

    }


    50%{

        box-shadow:0 0 60px rgba(77,163,255,.25);

    }


    100%{

        box-shadow:0 0 30px rgba(77,163,255,.1);

    }

}
/* ===========================
   FOOTER
=========================== */


.footer{

    padding:70px 10% 30px;

    background:rgba(0,0,0,.25);

    border-top:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

}



.footer-content{

    display:flex;

    justify-content:space-between;

    gap:50px;

    flex-wrap:wrap;

}



.footer h2{

    font-size:35px;

    color:#4DA3FF;

    margin-bottom:15px;

}



.footer h3{

    font-size:20px;

    margin-bottom:20px;

}



.footer p{

    color:#C2CBD8;

    line-height:1.7;

}



.footer-brand{

    max-width:300px;

}



.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}



.footer-links a{

    color:#C2CBD8;

    text-decoration:none;

    transition:.3s;

}



.footer-links a:hover{

    color:#4DA3FF;

}



.footer-contact{

    min-width:220px;

}



.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:#8995A8;

    border-top:1px solid rgba(255,255,255,.08);

}



/* MOBILE */


@media(max-width:900px){


    .footer-content{

        flex-direction:column;

    }


}
/* ===========================
   GLOBAL SCROLL ANIMATIONS
=========================== */


.hero-text,
.phone{

    opacity:0;

    transform:translateY(50px);

    animation:heroReveal 1s ease forwards;

}


.phone{

    animation-delay:.3s;

}



@keyframes heroReveal{

    from{

        opacity:0;

        transform:translateY(50px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* ALL SECTION HEADINGS */


.why-scamify h2,
.comparison h2,
.how-it-works h2,
.privacy h2,
.faq h2,
.download h2{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}


.section-text{

    opacity:0;

    transform:translateY(30px);

    transition:.8s ease .15s;

}



.show-section{

    opacity:1 !important;

    transform:translateY(0) !important;

}



/* CARD HOVER DEPTH */


.problem-card,
.compare-card,
.step-card,
.privacy-card,
.faq-card{


    transition:
    transform .35s ease,
    box-shadow .35s ease;

}



.problem-card:hover,
.compare-card:hover,
.step-card:hover,
.privacy-card:hover,
.faq-card:hover{


    transform:

    translateY(-12px)
    scale(1.03);


}



/* DOWNLOAD SECTION POP */


.download{


    opacity:0;

    transform:scale(.9);

    transition:1s ease;

}



.download.show-download{


    opacity:1;

    transform:scale(1);

}



/* PHONE EXTRA EFFECT */


.phone:hover{


    box-shadow:

    0 0 80px rgba(77,163,255,.45);


}



/* BUTTON PULSE */


.download-button,
.hero a{


    animation:buttonPulse 3s infinite;

}



@keyframes buttonPulse{


    0%{

        box-shadow:0 0 0 rgba(77,163,255,0);

    }


    50%{

        box-shadow:0 0 25px rgba(77,163,255,.5);

    }


    100%{

        box-shadow:0 0 0 rgba(77,163,255,0);

    }

}
/* NAVBAR SCROLL OFFSET */

section{

    scroll-margin-top:100px;

}
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
}

footer a {
    text-decoration: none;
}
.about-scamify {
    padding: 80px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-scamify h2 {
    margin-bottom: 20px;
    font-size: 4.0rem;
}

.about-scamify .section-text {
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}
.download form {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.download form input {
    width: 280px;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.download form button {
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
}
.form-note {
    margin-top: 12px;
    font-size: 12px;
    opacity: 0.7;
    text-align: center;
}