/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"Inter", sans-serif;
  color:#0c1323;
  background:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
  padding:14px 0;
}

.container{
  width:86%;
  margin:auto;
}

.nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:42px;
}

.nav-links{
  display:flex;
  gap:28px;
  list-style:none;
}

.nav-links a{
  font-weight:600;
  padding:6px 10px;
  border-radius:10px;
  transition:.25s;
}

.nav-links a:hover,
.nav-links .active{
  background:#9A0059;
  color:#fff;
}

.menu-btn{
  display:none;
  font-size:30px;
  font-weight:900;
  cursor:pointer;
}

/* =========================================================
   HERO — HOW IT WORKS
========================================================= */

/* ===== HOW IT WORKS — HERO SECTION ===== */

.how-hero{
  justify-content: center;
  height: 100vh;
  padding:120px 6% 80px;
  margin-left: 150px;
}

.how-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  max-width:1280px;
  margin:auto;
}

/* IMAGE */
.how-img{
  flex:1;
}

.how-img img{
  width:100%;
  max-width:320px;
  display:block;
}

/* TEXT */
.how-text{
  flex:2;
  font-family: "Inter", sans-serif;
}

.how-text h1{
  font-family:"Paytone One", sans-serif;
  font-size:48px;
  line-height:1.05;
  color:#0c1323;
  font-weight: 700;
  margin-bottom:18px;
}

.how-text h2{
  font-size:30px;
  font-weight:700;
  color:#0c1323;
  font-family: "Paytone One", sans-serif;
  margin-bottom:18px;
}

.how-text p{
  font-size:20px;
  line-height:1.7;
  color:#333;
  font-weight: 400;
  font-family: poppins, sans-serif;
  max-width:560px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1024px){

  .how-text h1{
    font-size:50px;
  }
}

@media(max-width:820px){

  .how-wrap{
    flex-direction:column;
    text-align:center;
  }

  .how-img img{
    max-width:380px;
    margin:auto;
  }

  .how-text{
    max-width:650px;
  }

  .how-text h1{
    font-size:42px;
  }

  .how-text h3{
    font-size:18px;
  }

  .how-text p{
    font-size:16px;
  }
}

/* HOW IT WORKS – STEPS */
.steps{
  width: 100%;
  margin-left: 120px;
  padding: 90px 6%;
}

.step-row{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 120px;
}

.step-row.reverse{
  grid-template-columns: 1fr 1.2fr;
}

.step-text h2.step-number{
  font-size: 64px;
  color: #ffaafb;
  font-family: "Paytone One", sans-serif;
  margin-bottom: 10px;
}

.step-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}

.step-text p{
  font-size: 18px;
  line-height: 1.7;
}

.step-img img{
  width: 100%;
  max-width: 430px;
  object-fit: contain;
}

/* RESPONSIVE */
@media(max-width: 900px){

  .step-row,
  .step-row.reverse{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-img{
    order: -1;
  }

  .step-text h2.step-number{
    font-size: 42px;
  }

  .step-title{
    font-size: 24px;
  }
}

.why-section{
  text-align:center;
  padding:80px 6%;
}

.why-title{
  font-family: "Paytone One", sans-serif;
  font-size: 46px;
  color:#0B1220;
  margin-bottom:6px;
}

.why-sub{
  font-family: "Inter", sans-serif;
  font-size:18px;
  color:#444;
  margin-bottom:0px;
}

.why-img-wrap{
  max-width:980px;
  margin:0 auto;
}

.why-img-wrap img{
  width:100%;
  height:auto;
  display:block;
}

/* IMPACT SECTION */
.impact{
  padding:80px 6%;
}

.impact-title{
  font-family:"Paytone One", sans-serif;
  font-size:50px;
  color:#0B1220;
  margin-bottom:55px;
}

.impact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:40px;
  text-align:center;
}

.impact-box{
  max-width:330px;
  margin:0 auto;
}

.impact-number{
  font-family:"Paytone One", sans-serif;
  font-size:70px;
  margin-bottom:10px;
}

.purple{ color:#7B3DFF; }
.blue{ color:#287BFF; }
.pink{ color:#FF2F92; }

.impact-text{
  font-family:"Inter", sans-serif;
  font-size:18px;
  color:#36424D;
  line-height:1.4;
}

/* CTA SECTION */
.cta-section{
  background: #ffa2b49f;
  padding:100px 6%;
  position:relative;
  overflow:hidden;
}

.cta-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.cta-text h2{
  font-family:"Paytone One", sans-serif;
  font-size:64px;
  color:#000;
  line-height:1.05;
  margin-bottom:18px;
}

.cta-text p{
  font-family:"Inter", sans-serif;
  font-size:20px;
  color:#000;
  max-width:520px;
  line-height:1.5;
}

.cta-buttons{
  margin-top:28px;
  display:flex;
  gap:16px;
}

.cta-buttons img{
  width:170px;
  cursor:pointer;
}

.cta-phone img{
  max-width:420px;
  width:100%;
}


/* footer */
.footer{
  background:#fff;
  padding:70px 6% 50px;
  border-top:1px solid #eee;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo{
  width:170px;
  margin-bottom:12px;
}

.footer-heading{
  margin:18px 0 10px;
  font-weight:700;
  font-family: paytone one, sans-serif;
}

.store-buttons img{
  width:170px;
  margin:8px 0;
  cursor:pointer;
}

.social-icons{
  margin-top:16px;
}

.social-icons i{
  font-size:22px;
  margin-right:10px;
  cursor:pointer;
}

.footer-col h4{
  margin-bottom:14px;
  font-weight:800;
  font-family: paytone one, sans-serif;
}

.footer-col a,
.footer-col p{
  display:block;
  font-family: paytone one, sans-serif;
  margin:7px 0;
  color:#333;
  text-decoration:none;
}

.footer-col a:hover{
  color:#9A0059;
}

.footer-bottom{
  margin-top:50px;
  text-align:center;
  font-size:14px;
  color:#444;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1000px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
}

@media(max-width:700px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer{
    text-align:center;
  }

  .social-icons i{
    margin-right:6px;
  }
}
/* ============================
   HOW IT WORKS — STEPS SECTION
   ============================ */

.steps-section{
  width: 100%;
  padding: 80px 6% 60px;
}

/* container */
.step-wrap{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

/* left/right flip layout */
.step-wrap.reverse{
  grid-template-columns: 1fr 1.1fr;
}

/* image */
.step-img img{
  width: 100%;
  height: auto;
  max-width: 280px;
  display: block;
}

/* TEXT SECTION */
.step-text{
  max-width: 560px;
}

.step-number{
  font-family: "Paytone One", sans-serif;
  font-size: 92px;
  margin-bottom: 6px;

  /* BRAND COLOR (soft / watermark) */
  /* Replace #9A0059 with YOUR brand color */
  color: rgba(154, 0, 89, 0.18);
}

.step-title{
  font-family: "Paytone One", sans-serif;
  font-size: 34px;
  margin-bottom: 14px;
  color: #0d1b2a;
}

.step-text p{
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #243447;
}

.step-text strong{
  font-weight: 800;
  color: #0d1b2a;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px){

  .step-wrap,
  .step-wrap.reverse{
    grid-template-columns: 1fr;
    text-align: left;
    gap: 30px;
  }

  .step-img{
    display: flex;
    justify-content: center;
  }

  .step-img img{
    max-width: 360px;
  }

  .step-number{
    font-size: 70px;
  }

  .step-title{
    font-size: 26px;
  }
}

@media (max-width: 550px){

  .steps-section{
    padding: 60px 5%;
  }

  .step-img img{
    max-width: 300px;
  }

  .step-number{
    font-size: 58px;
  }
}
