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

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{
    font-family: Arial, sans-serif;
    overflow-x:hidden;
    color:#111;
}
:root{
    color-scheme: light;
}

html,
body{
    background:#fff;
    color:#111;
}

/* CONTAINER */
.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    width:100%;
}

/* HERO */
.hero{
    min-height:100vh;
    background:linear-gradient(135deg,#021b0d,#0b341b,#164726);
    color:white;
    display:flex;
    align-items:center;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    flex-wrap:wrap;
    gap:15px;
}

.logo img{
    max-width:160px;
    height:auto;
}

/* NAV */
.navbar nav{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.navbar nav a{
    color:white;
    text-decoration:none;
    font-size:15px;
    position:relative;
}

.navbar nav a:hover{
    color:#43c463;
}
.navbar nav a.active{
    color:#40A75D;
}

.mobile-menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:12px;
    background:rgba(255,255,255,.08);
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.mobile-menu-toggle span{
    display:block;
    width:22px;
    height:2px;
    border-radius:2px;
    background:#fff;
    transition:transform .2s ease, opacity .2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2){
    opacity:0;
}

.mobile-menu-toggle.is-open span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* HERO CONTENT */
.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:60px 0;
}

/* LEFT RIGHT FLEX */
.hero-left,
.hero-right{
    flex:1;
    min-width:300px;
}

/* TEXT */
.mini-title{
    color:#6be675;
    font-size:clamp(14px, 2vw, 18px);
    margin-bottom:15px;
}

.hero-left h3{
    font-size:clamp(20px, 3vw, 30px);
    line-height:1.5;
    margin-bottom:20px;
}

.hero-right h1{
    font-size:clamp(28px, 5vw, 65px);
    line-height:1.1;
    margin-bottom:20px;
}

.hero-right span{
    color:#6be675;
}

.hero-right p{
    font-size:clamp(14px, 2vw, 18px);
    line-height:1.7;
    max-width:500px;
}
.hero-left{
    text-align:center;
}
.hero{
    min-height:auto;
    padding-bottom:60px;
}

/* PHONE IMAGE */
.phone-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.phones{
    width:100%;
    max-width:500px;
    height:auto;
    filter:drop-shadow(0px 16px 16px rgba(64,167,93,.2));
}

/* STORE BUTTONS */
.store-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:25px;
}

.store-buttons a{
    display:inline-block;
}

.store-buttons img{
    display:block;
    height:45px;
    width:auto;
    max-width:100%;
    cursor:pointer;
}

/* SECTIONS */
.section{
    padding:80px 0;
}

.section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:clamp(24px, 4vw, 40px);
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:#f7f7f7;
    border-radius:20px;
    padding:25px;
    text-align:center;
}

/* FOOTER */
footer{
    background:#f5f5f5;
    padding:30px;
    text-align:center;
}
/* =========================
   ABOUT SECTION
========================= */

.about-wrapper{
    display:flex;
    align-items:center;
    gap:34px;
}

.about-content{
    flex: 0 0 32%;
    text-align: left;
}

.about-content h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: left;
}

.about-content h2 span{
    color:#40A75D;
}

.about-content p{
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin: 0;
    text-align: justify;
}

.about-cards{
    flex:1;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.about-cards .card{
    background:#fff;
    border:1px solid #E9E9E9;
    border-radius:24px;
    padding:24px;

    min-height:288px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:16px;
}

.about-cards .card img{
    width:90px;
    height:90px;
    object-fit:contain;
}

.about-cards .card h3{
    font-size:24px;
    font-weight:700;
    margin:0;
}

.about-cards .card p{
    font-size:15px;
    line-height:1.6;
    color:#555;
    margin:0;
}

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

@media (max-width:1024px){

    .about-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .about-content{
        flex:none;
        width:100%;
        max-width:700px;
    }

    .about-cards{
        width:100%;
        grid-template-columns:repeat(2, 1fr);
    }
}

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

@media (max-width:768px){

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .about-cards .card{
        min-height:auto;
        padding:24px 20px;
    }

    .about-cards .card h3{
        font-size:22px;
    }
}
/* =========================
   CHALLENGE SECTION
========================= */

.challenge-section{
    padding:100px 0;
    background:#fff;
}

.challenge-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    margin-bottom:50px;
}

.challenge-title span{
    color:#40A75D;
}

.challenge-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    
}

.challenge-card{
    background:#fff;
    border:1px solid #eaeaea;
    border-radius:24px;
    overflow:hidden;
    transition:.3s;
    display:flex;
    flex-direction:column;
    padding:0; /* remove bottom padding */
    box-shadow:none;
}

.challenge-card:hover{
    transform:translateY(-5px);
}

.challenge-card img{
    width:100%;
    display:block; /* removes image gap */
    border:none;
}

.card-content{
    padding:20px;
    border:none;
}

.card-content h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
}

.card-content p{
    font-size:16px;
    color:#555;
    
}

.challenge-btn-wrap{
    text-align:center;
    margin-top:40px;
}

.challenge-btn{
    display:inline-block;
    padding:16px 60px;
    border:1px solid #40A75D;
    border-radius:16px;
    text-decoration:none;
    color:#40A75D;
    
    transition:.3s;
}

.challenge-btn:hover{
    background:#40A75D;
    color:#fff;
}
/* =========================
   HOW IT WORKS
========================= */

.works-section{
    padding:100px 0;
    background:#fff;
}

.works-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    margin-bottom:60px;
}

.works-title span{
    color:#40A75D;
}

.works-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.works-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    min-height:280px;

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

.icon-circle{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#EAF6ED;

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

    margin-bottom:25px;
}

.icon-circle img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.works-card h3{
    font-size:18px; /* was 22px */
    font-weight:700;
    margin-bottom:15px;
}

.works-card p{
    font-size:15px;
    line-height:1.8;
    color:#555;
}
/* =========================
   FEATURED REWARDS
========================= */

.rewards-section{
    padding:100px 0;
    background:#fff;
}

.rewards-heading{
    margin-bottom:50px;
}

.rewards-heading h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

.rewards-heading h2 span{
    color:#40A75D;
}

.rewards-heading p{
    font-size:15px;
    color:#666;
}

.rewards-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.reward-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:20px;
    padding:0px 0px 20px 0;
    text-align:center;
    transition:.3s;
}

.reward-card:hover{
    transform:translateY(-5px);
}

.reward-card img{
    width:100%;
    /* max-width:140px;
    margin:auto;
    display:block; */
}

.reward-card h4{
    margin-top:15px;
    font-size:16px;
    font-weight:700;
}

.reward-card span{
    display:block;
    margin-top:6px;
    font-size:14px;
    color:#666;
}
.brands-section{
    padding:80px 0;
}

.brands-image{
    width:100%;
    display:block;
    border-radius:32px;
}
/* FAQ */
.faq-section{
    padding:100px 0;
    background:#fff;
}

.faq-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    margin-bottom:50px;
}

.faq-title span{
    color:#40A75D;
}

.faq-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.faq-image{
    flex:1;
}

.faq-image img{
    width:100%;
    max-width:450px;
    display:block;
    margin:auto;
}

.faq-list{
    flex:1;
    width:100%;
}

.faq-item{
    border:1px solid #e5e5e5;
    border-radius:10px;
    margin-bottom:12px;
    overflow:hidden;
    background:#fff;
     width:100%;
}

.faq-item summary{
    position:relative;
    padding:18px 50px 18px 20px;
    cursor:pointer;
    font-size:15px;
    font-weight:500;
    list-style:none;
    width:100%;
    display:block;
    
}

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

/* Black down arrow */
.faq-item summary::after{
    content:"▼";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:12px;
    color:#000;
    transition:transform 0.3s ease;
}

/* Rotate arrow when open */
.faq-item[open] summary::after{
    transform:translateY(-50%) rotate(180deg);
}

.faq-item p{
    padding:0 20px 20px;
    color:#666;
    line-height:1.6;
}
/* =========================
   CONTACT
========================= */

.contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-card{
    border:1px solid #e8e8e8;
    border-radius:40px;
    padding:40px;
    display:flex;
    gap:40px;
    align-items:stretch;
}

.contact-info{
    flex:0 0 35%;
    display:flex;
    flex-direction:column;
}

.contact-tag{
    color:#40A75D;
    font-size:18px;
    font-weight:600;
    margin-bottom:12px;
}

.contact-info h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    text-align:left;
}

.contact-info h2 span{
    color:#40A75D;
}

.contact-info p{
    color:#555;
    line-height:1.7;
    margin-bottom:30px;
    max-width:320px;
}

.contact-details{
    list-style:none;
}



.contact-copy{
    margin-top:auto;
    padding-top:50px;
    font-size:14px;
    color:#666;
}

.contact-form-wrap{
    flex:1;
    border:1px solid #e8e8e8;
    border-radius:24px;
    padding:25px;
}

.contact-form{
    width:100%;
}

.contact-form .row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:8px;
    padding:14px;
    outline:none;
    font-size:14px;
    margin-bottom:15px;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    width:100%;
    border:none;
    border-radius:10px;
    padding:16px;
    cursor:pointer;
    color:#fff;
    font-weight:600;

    background:linear-gradient(
        90deg,
        #40A75D,
        #67D87E
    );
}
.contact-details{
    list-style:none;
    padding:0;
    margin-top:30px;
}

.contact-details li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-size:16px;
    color:#333;
}


.contact-details li img{
    width:22px;
    height:22px;
    object-fit:contain;
    flex-shrink:0;
}
/* =========================
   BRANDS & ADVERTISERS
========================= */

.brands-section{
    padding:100px 0;
    background:#fff;
}

.brands-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    width:100%;
    min-height:384px;

    background:linear-gradient(
        90deg,
        rgba(231, 246, 234, 1) 0%,
        rgba(244, 250, 245, 1) 100%
    );

    border-radius:72px;
    padding:60px 70px;
}

.brands-left{
    flex:0 0 28%;
    display:flex;
    justify-content:center;
}

.brands-left img{
    width:100%;
    max-width:320px;
    height:auto;
}

.brands-content{
    flex:0 0 35%;
}

.brands-content h2{
    font-size:34px;   
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
    white-space:nowrap; 
}

.brands-content h2 span{
    color:#40A75D;
}

.brands-content p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

.brands-features{
    flex:0 0 30%;

    display:flex;
    flex-direction:column;
    gap:18px;
}


.feature{
    background:transparent;
    border:none;
    padding:0;

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

    font-size:16px;
    font-weight:500;
    color:#222;
}

.tick-icon{
    width:22px;
    height:22px;
    flex-shrink:0;
}

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

@media (max-width:1024px){

    .brands-card{
        flex-direction:column;
        text-align:center;
        padding:35px;
    }

    .brands-left,
    .brands-content,
    .brands-features{
        flex:unset;
        width:100%;
    }

    .brands-content h2{
        font-size:34px;
    }

    .brands-content p{
        max-width:650px;
        margin:auto;
    }

    .brands-features{
        margin-top:10px;
    }
}

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

@media (max-width:768px){

    .brands-section{
        padding:70px 0;
    }

    .brands-card{
        padding:25px;
        border-radius:24px;
        gap:25px;
    }

    .brands-left img{
        max-width:220px;
    }

    .brands-content h2{
        font-size:30px;
        text-wrap: auto;
    }

    .brands-content p{
        font-size:15px;
        line-height:1.8;
    }

    .feature{
        font-size:14px;
        min-height:55px;
    }
}

/* =========================
   TABLET (<=1024px)
========================= */
@media (max-width:1024px){

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-right p{
        margin:auto;
    }

    /* .navbar{
        justify-content:center;
    } */

    .about-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .about-content{
        flex:1;
        max-width:100%;
    }

    .about-content h2{
        text-align:center;
        font-size:42px;
    }

    .about-cards{
        width:100%;
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width:1024px){

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

    .challenge-title{
        font-size:40px;
    }
}
@media (max-width:1024px){

    .contact-card{
        flex-direction:column;
    }

    .contact-info h2{
        text-align:center;
    }

    .contact-info p{
        max-width:100%;
        text-align:center;
    }
}

/* =========================
   MOBILE (<=768px)
========================= */
@media (max-width:768px){

    .navbar{
        justify-content:space-between;
        position:relative;
        gap:12px;
    }

    .mobile-menu-toggle{
        display:flex;
    }

    .navbar nav{
        display:none;
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px;
        border:1px solid rgba(255,255,255,.18);
        border-radius:16px;
        background:rgba(2, 27, 13, .96);
        box-shadow:0 16px 32px rgba(0,0,0,.2);
    }

    .navbar nav.is-open{
        display:flex;
    }

    .navbar nav a{
        padding:13px 14px;
        border-radius:10px;
        font-size:15px;
    }

    .navbar nav a:hover,
    .navbar nav a.active{
        background:rgba(64,167,93,.15);
    }

    .hero-content{
        padding:40px 0;
    }

    .store-buttons{
        justify-content:center;
    }

    .logo img{
        max-width:140px;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-content p{
        font-size:16px;
    }
}
@media (max-width:768px){

    .showcase-box{
        padding:20px;
        border-radius:25px;
    }

    .app-showcase{
        padding:50px 0;
    }
}
@media (max-width:768px){

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

    .challenge-title{
        font-size:32px;
    }

    .card-content h3{
        font-size:24px;
    }

    .challenge-btn{
        width:100%;
        max-width:320px;
    }
}
@media (max-width:1024px){

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

    .works-title{
        font-size:40px;
    }
}
@media (max-width:768px){

    .faq-wrapper{
        flex-direction:column;
        gap:30px;
    }

    .faq-title{
        font-size:32px;
    }

    .faq-image img{
        max-width:280px;
    }
     .faq-list{
        width:100%;
        max-width:500px;
        margin:0 auto;
    }

    .faq-item{
        width:100%;
    }
}
@media (max-width:768px){

    .contact-form .row{
        grid-template-columns:1fr;
    }

    .contact-card{
        padding:25px;
        border-radius:25px;
    }

    .contact-info h2{
        font-size:36px;
    }
}
/* =========================
   SMALL MOBILE (<= 480px)
========================= */
@media (max-width:480px){

    .hero-right h1{
        font-size:26px;
    }

    .hero-left h3{
        font-size:18px;
    }

    .navbar nav a{
        font-size:13px;
    }

    .section{
        padding:60px 0;
    }
}
@media (max-width:768px){

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

    .works-title{
        font-size:32px;
    }

    .works-card{
        min-height:auto;
    }
}
@media (max-width:1024px){
    .rewards-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){
    .rewards-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .rewards-heading h2{
        font-size:36px;
    }
}

@media (max-width:480px){
    .rewards-grid{
        grid-template-columns:1fr;
    }

    .rewards-heading{
        text-align:center;
    }
}
/* =========================
   APP SHOWCASE
========================= */

.app-showcase{
    padding:100px 0;
}

.showcase-box{
    background:linear-gradient(
        90deg,
        #E7F6EA 0%,
        #F4FAF5 100%
    );

    border-radius:72px;
    padding:60px;
    overflow:hidden;
}

.showcase-image{
    display:block;
    width:85%;
    max-width:1400px;
    height:auto;
    margin:0 auto;
}

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

@media (max-width:1024px){

    .showcase-box{
        padding:40px;
        border-radius:48px;
    }

    .showcase-image{
        width:90%;
    }
}

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

@media (max-width:768px){

    .app-showcase{
        padding:70px 0;
    }

    .showcase-box{
        padding:24px;
        border-radius:32px;
    }

    .showcase-image{
        width:100%;
    }
}
.success-message{
    margin-top:20px;
    background:#e8fff0;
    color:#40A75D;
    border:1px solid #40A75D;
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:500;
}

.error-message{
    margin-top:20px;
    background:#fff0f0;
    color:#dc3545;
    border:1px solid #dc3545;
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:500;
}
.contact-copy{
    display:block;
}

.mobile-copy{
    display:none;
}

@media (max-width:768px){

    .contact-copy{
        display:none;
    }

    .mobile-copy{
        display:block;
        text-align:center;
        margin-top:20px;
        color:#666;
    }

    .store-buttons {
        justify-content: center;
    }

}

.email-link{
    color:#333;
    text-decoration:none;
}