/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: Arial, Helvetica, sans-serif;
}


/* HEADER */

.site-header{
background:#ffffff;
border-bottom:1px solid #eee;
padding:15px 0;
}


/* HEADER CONTAINER */

.header-container{
display:flex;
justify-content:center;   /* horizontal center */
align-items:center;
}


/* LOGO */

.logo-link{
display:flex;
justify-content:center;
align-items:center;
}

.site-logo{
height:60px;
width:270px;
max-width:100%;
}


/* RESPONSIVE */

@media (max-width:768px){

.site-logo{
height:48px;
}

}

@media (max-width:480px){

.site-logo{
height:42px;
}

}

/* HERO SECTION */

.hero-section{
    position:relative;
    width:100%;
    height:100vh;

    background-image:url("/assets/images/1.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}


/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}


/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;
    padding:20px;
    max-width:900px;
}


/* HERO TITLE */

.hero-title{
    color:#ffffff;
    font-size:48px;
    font-weight:700;
    margin-bottom:30px;
    line-height:1.2;
}


/* BUTTON */

.hero-button{
    display:inline-block;

    padding:16px 38px;

    font-size:18px;
    font-weight:700;

    color:#fff;
    text-decoration:none;

    border-radius:8px;

    background:linear-gradient(90deg,#2a6cf4,#7a3cff);

    transition:all .25s ease;
}

.hero-button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}


/* SECURITY TEXT */

.hero-security{
    margin-top:18px;
    font-size:14px;
    color:#d9d9d9;
}


/* TABLET */

@media (max-width:992px){

.hero-title{
    font-size:36px;
}

}


/* MOBILE */

@media (max-width:768px){

.hero-section{
    height:85vh;
    padding:40px 20px;
}

.hero-title{
    font-size:28px;
}

.hero-button{
    padding:14px 30px;
    font-size:16px;
}

}


/* SMALL MOBILE */

@media (max-width:480px){

.hero-title{
    font-size:24px;
}

.hero-button{
    width:100%;
    max-width:260px;
}

}

/* FEATURES SECTION */

.features-section{
background:#f3f5f9;
padding:90px 20px;
}


/* GRID */

.features-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
max-width:1200px;
margin:auto;
}


/* ITEM */

.feature-item{
text-align:left;
position:relative;
}


/* ICON */

.feature-icon{
width:80px;
height:80px;

background:#ffffff;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:34px;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

margin-bottom:25px;
}


/* TITLE */

.feature-title{
font-size:32px;
font-weight:700;

color:#1e63e9;

margin-bottom:18px;

line-height:1.2;
}


/* TEXT */

.feature-text{
font-size:18px;
color:#6b7280;

line-height:1.6;
}


/* TABLET */

@media (max-width:992px){

.features-grid{
grid-template-columns:repeat(2,1fr);
gap:40px;
}

}


/* MOBILE */

@media (max-width:768px){

.features-section{
padding:60px 20px;
}

.features-grid{
grid-template-columns:1fr;
gap:40px;
}

.feature-title{
font-size:26px;
}

.feature-text{
font-size:16px;
}

}

/* BENEFITS SECTION */

.benefits-section{
background:#f4f6fa;
padding:80px 20px;
}

.benefits-container{
max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}


/* IMAGE */

.benefits-image img{
width:100%;
border-radius:18px;
display:block;
}


/* RIGHT SIDE */

.benefits-title{
font-size:40px;
color:#1e63e9;
font-weight:700;
margin-bottom:30px;
}


/* LIST */

.benefits-list{
list-style:none;
padding:0;
margin:0;
}

.benefits-list li{

display:flex;
align-items:center;

background:#e9edf3;

padding:18px 22px;

margin-bottom:14px;

border-radius:4px;

font-size:18px;
font-weight:500;
}


/* ICON */

.benefit-icon{
width:30px;
display:inline-flex;
justify-content:center;
margin-right:15px;

font-size:20px;
color:#2e6cf6;
}


/* TABLET */

@media (max-width:992px){

.benefits-container{
grid-template-columns:1fr;
gap:40px;
}

.benefits-title{
text-align:center;
}

}


/* MOBILE */

@media (max-width:768px){

.benefits-section{
padding:60px 20px;
}

.benefits-title{
font-size:30px;
}

.benefits-list li{
font-size:16px;
padding:14px 16px;
}

}

/* ABOUT SECTION */

.about-section{
background:#18223d;
padding:80px 20px;
color:#ffffff;
}

.about-container{
max-width:1100px;
margin:auto;
}


/* TITLE */

.about-title{
font-size:42px;
font-weight:700;
margin-bottom:20px;
}


/* TEXT */

.about-text{
font-size:18px;
line-height:1.7;
color:#d5d9e4;
max-width:1000px;
}


/* TABLET */

@media (max-width:992px){

.about-title{
font-size:34px;
}

}


/* MOBILE */

@media (max-width:768px){

.about-section{
padding:60px 20px;
}

.about-title{
font-size:28px;
}

.about-text{
font-size:16px;
}

}

/* HOW IT WORKS SECTION */

.how-section{
background:#f3f5f9;
padding:90px 20px;
}

.how-container{
max-width:1200px;
margin:auto;
text-align:center;
}

/* TITLE */

.how-title{
font-size:42px;
font-weight:700;
color:#1e63e9;
margin-bottom:60px;
}

/* GRID */

.how-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
}

/* ITEM */

.how-item{
text-align:center;
}

/* ICON WRAPPER */

.how-icon-wrapper{
position:relative;
display:inline-block;
margin-bottom:20px;
}

/* ICON */

.how-icon{
font-size:44px;
color:#1e63e9;
}

/* STEP NUMBER BADGE */

.step-number{
position:absolute;
top:-12px;
right:-18px;

width:40px;
height:40px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:#fff;
font-weight:700;
font-size:16px;
}

/* COLORS */

.step-number.blue{
background:#1ea4dc;
}

.step-number.green{
background:#47c48a;
}

.step-number.purple{
background:#6f3cd7;
}

/* HEADINGS */

.how-heading{
font-size:34px;
font-weight:700;
color:#1e63e9;
margin-bottom:15px;
}

/* TEXT */

.how-text{
font-size:18px;
color:#6b7280;
line-height:1.6;
max-width:320px;
margin:auto;
}


/* TABLET */

@media (max-width:992px){

.how-grid{
grid-template-columns:repeat(2,1fr);
gap:40px;
}

}

/* MOBILE */

@media (max-width:768px){

.how-grid{
grid-template-columns:1fr;
gap:40px;
}

.how-title{
font-size:32px;
}

.how-heading{
font-size:26px;
}

.how-text{
font-size:16px;
}

}

/* FAQ SECTION */

.faq-section{
background:#f6f7fb;
padding:90px 20px;
}

.faq-container{
max-width:1000px;
margin:auto;
}

/* TITLE */

.faq-title{
font-size:42px;
font-weight:700;
color:#1e63e9;
margin-bottom:30px;
}

/* FAQ ITEMS */

.faq-item{
margin-bottom:22px;
}

.faq-question{
font-size:20px;
font-weight:600;
color:#333;
margin-bottom:12px;
cursor:pointer;
}

/* ANSWER */

.faq-answer{
font-size:18px;
line-height:1.7;
color:#555;
max-width:950px;
}

/* MOBILE */

@media (max-width:768px){

.faq-section{
padding:60px 20px;
}

.faq-title{
font-size:30px;
}

.faq-question{
font-size:18px;
}

.faq-answer{
font-size:16px;
}

}

/* REVIEWS SECTION */

.reviews-section{
background:#f6f7fb;
padding:90px 20px;
}

.reviews-container{
max-width:1200px;
margin:auto;
}

.reviews-title{
text-align:center;
font-size:36px;
font-weight:700;
color:#1e63e9;
margin-bottom:60px;
}


/* GRID */

.reviews-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}


/* CARD */

.review-card{
background:#ffffff;
padding:30px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}


/* HEADER */

.review-header{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}


/* AVATAR */

.review-avatar{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}


/* NAME */

.review-name{
font-size:18px;
font-weight:700;
margin-bottom:5px;
}


/* STARS */

.review-stars{
color:#f5b301;
font-size:18px;
}


/* TEXT */

.review-text{
font-size:16px;
line-height:1.7;
color:#555;
}


/* TABLET */

@media (max-width:992px){

.reviews-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* MOBILE */

@media (max-width:768px){

.reviews-grid{
grid-template-columns:1fr;
}

.reviews-title{
font-size:28px;
}

}

/* TERMS / LEGAL SECTION */

.terms-section{
background:#ffffff;
padding:80px 20px;
}

.terms-container{
max-width:1100px;
margin:auto;
font-size:15px;
line-height:1.7;
color:#333;
}

.terms-container h3{
font-size:24px;
margin-bottom:20px;
}

.terms-container h4{
margin-top:30px;
margin-bottom:10px;
font-size:18px;
font-weight:700;
}

.terms-container ul{
padding-left:20px;
margin:15px 0;
}

.terms-container li{
margin-bottom:8px;
}


/* WARNING BOX */

.terms-warning{
background:#f3e3b4;
border-radius:12px;
padding:16px 20px;
margin:25px 0;
}


/* ADVERTISING DISCLOSURE */

.terms-ad-box{
border-left:4px solid #ffc107;
padding-left:18px;
margin:15px 0;
}


/* TESTIMONIAL DISCLAIMER */

.testimonial-disclaimer{
margin-top:30px;
background:#dcd0f3;
padding:14px 18px;
border-radius:12px;
font-size:14px;
}


/* MOBILE */

@media (max-width:768px){

.terms-container{
font-size:14px;
}

.terms-container h3{
font-size:20px;
}

}

/* FOOTER */

.site-footer{
background:#141c34;
padding:14px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.site-footer p{
color:#ffffff;
font-size:14px;
margin:0;
}

.site-footer a{
color:#ffffff;
text-decoration:none;
font-weight:500;
}

.site-footer a:hover{
text-decoration:underline;
}

.footer-separator{
margin:0 8px;
color:#ffffff;
}


/* MOBILE */

@media (max-width:768px){

.site-footer p{
font-size:13px;
line-height:1.6;
}

}