/* 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{
  position:fixed;
  top:0;left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.container{
  width:86%;
  margin:auto;
}

.nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:42px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-links li a{
  text-decoration:none;
  color:#0c1323;
  font-weight:600;
  padding:6px 10px;
  border-radius:10px;
  transition:.25s;
}

.nav-links li a:hover{
  background:linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:#fff;
}
.nav-links a:hover,
.nav-links .active{
  background:#9A0059;
  color:#fff;
}
.menu-btn{
  display:none;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
}
@media(max-width:820px){

  .menu-btn{display:block;}

  .nav-links{
    position:absolute;
    top:100%;right:0;width:100%;
    flex-direction:column;
    background:#fff;
    padding:18px 0;
    text-align:center;
    gap:14px;
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:.25s;
  }

  .nav-links.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .left-img,.right-img{display:none;}

  .hero{
    height:auto;
    padding:120px 0 80px;
  }

  .title{font-size:40px;}
  .store-btns img{height:95px;}

  .works-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .works-title{font-size:40px;}
  .works-visuals{display:none;}

  .stats-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}

/* =========================================================
   HERO — HOW IT WORKS
========================================================= */

/* ===== HOW IT WORKS — HERO SECTION ===== */

.how-hero{
  justify-content: center;
  height: 100vh;
  padding:120px 6% 80px;
  margin-left: 150px;
  margin-bottom: -100px;
}

.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;

}

.how-text h1{

  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;
  margin-bottom:18px;
}

.how-text p{
  font-size:20px;
  line-height:1.7;
  color:#333;
  font-weight: 400;

  max-width:560px;
}

/* -----------------------------
   HOW IT WORKS — RESPONSIVE PACK
------------------------------*/

/* Large laptops + compact screens (≤1400px) */
@media (max-width: 1400px){
  .how-hero{
    margin-left: 0;
    padding: 130px 6% 80px;
    height: auto;
  }
}

/* Standard laptop + big tablets (≤1200px) */
@media (max-width: 1200px){
  .how-wrap{
    gap: 40px;
  }

  .how-text h1{
    font-size: 42px;
  }

  .how-text p{
    max-width: 520px;
  }
}

/* Tablets landscape + fold screens (≤1024px) */
@media (max-width: 1024px){

  .how-hero{
    padding: 120px 5% 70px;
  }

  .how-img img{
    max-width: 280px;
  }
}

/* Tablets portrait + dual-fold phones (≤900px) */
@media (max-width: 900px){

  .how-wrap{
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .how-text{
    max-width: 680px;
  }

  .how-img img{
    max-width: 330px;
    margin: auto;
  }
}

/* Small tablets + center-fold phones (≤760px) */
@media (max-width: 760px){

  .how-text h1{
    font-size: 34px;
  }

  .how-text h2{
    font-size: 20px;
  }

  .how-text p{
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Phones + mini folds (≤640px) — HIDE IMAGE */
@media (max-width: 640px){

  .how-img{
    display: none;
  }

  .how-hero{
    height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .how-text{
    text-align: center;
    margin: 0 auto;
  }
}

/* Very small phones (≤420px) */
@media (max-width: 420px){

  .how-text h1{
    font-size: 28px;
  }

  .how-text p{
    font-size: 14px;
  }
}


/* ===== 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%;
  margin-top: -800px;
}

.step-row{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 0px;
}

.step-row.reverse{
  grid-template-columns: 1fr 1.2fr;
}

.step-text h2.step-number{
  font-size: 64px;
  color: #ffaafb;
  margin-bottom: 0px;
}

.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: 220px;
  object-fit: contain;
}
.step-imgg img{
  width: 100%;
  max-width: 220px;
  margin-left: 160px;
  object-fit: contain;
}

.tilt-left,
.tilt-right{
  width: 100%;
  max-width: 430px;
  border-radius: 22px;
  box-shadow: 0 25px 45px rgba(0,0,0,.18);
  transition: .3s ease;
}

/* tilt direction */
.tilt-left{
  transform: rotate(-4deg);
}

.tilt-right{
  transform: rotate(4deg);
}

/* hover animation */
.tilt-left:hover,
.tilt-right:hover{
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 35px 55px rgba(0,0,0,.22);
}

/* mobile — remove tilt */
@media(max-width: 700px){
  .tilt-left,
  .tilt-right{
    transform: rotate(0deg);
  }
}

/* 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-size: 46px;
  color:#0B1220;
  margin-bottom:6px;
}

.why-sub{
  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-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-size:70px;
  margin-bottom:10px;
}

.purple{ color:#7B3DFF; }
.blue{ color:#287BFF; }
.pink{ color:#FF2F92; }

.impact-text{
  
  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-size:64px;
  color:#000;
  line-height:1.05;
  margin-bottom:18px;
}

.cta-text p{
  font-size:20px;
  color:#000;
  max-width:520px;
  line-height:1.5;
  margin-bottom: -60px;
}

.cta-buttons{
  margin-top:28px;
  display:flex;
  gap:16px;
  margin-bottom: -100px;
}

.cta-buttons img{
  width:170px;
  cursor:pointer;
}

.cta-phone img{
  max-width:420px;
  width:100%;
  margin-bottom: -100px;
}
/* ========== IMPACT — RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px){
  .impact-title{
    font-size: 42px;
    text-align: center;
  }

  .impact-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .impact-number{
    font-size: 60px;
  }

  .impact-text{
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 720px){

  .impact{
    padding: 60px 6%;
  }

  .impact-title{
    font-size: 32px;
    line-height: 1.2;
  }

  .impact-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .impact-box{
    max-width: 280px;
  }

  .impact-number{
    font-size: 54px;
  }
}

/* ===============================
   HOW IT WORKS — BASE
=============================== */

.steps{
  width: 100%;
  padding: 90px 6%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
}

.step-row{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

.step-row.reverse{
  grid-template-columns: 1fr 1.2fr;
}

/* TEXT */
.step-number{
  font-size: 64px;
  color: #ffaafb;
  margin-bottom: 10px;
}

.step-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}

.step-text p{
  font-size: 18px;
  line-height: 1.7;
}

/* IMAGES */
.step-img,
.step-imgg{
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-img img,
.step-imgg img{
  width: 100%;
  max-width: 260px;
  object-fit: contain;
}

/* TILT EFFECT */
.tilt-left,
.tilt-right{
  max-width: 430px;
  border-radius: 22px;
  box-shadow: 0 25px 45px rgba(0,0,0,.18);
  transition: .3s ease;
}

.tilt-left{ transform: rotate(-4deg); }
.tilt-right{ transform: rotate(4deg); }

.tilt-left:hover,
.tilt-right:hover{
  transform: rotate(0deg) scale(1.02);
}

/* remove tilt mobile */
@media(max-width: 700px){
  .tilt-left,
  .tilt-right{
    transform: none;
  }
}

/* ===============================
   RESPONSIVE OVERRIDES
=============================== */

/* 1600 — large desktop */
@media (max-width: 1600px){
  .steps{ padding: 90px 7%; }
}

/* 1400 — normal desktop */
@media (max-width: 1400px){
  .steps{ padding: 85px 6%; }
}

/* 1200 — compact laptop */
@media (max-width: 1200px){
  .steps{ padding: 80px 6%; }
}

/* 1024 — small laptop / big tablet */
@media (max-width: 1024px){
  .step-title{ font-size: 28px; }
}

/* 950 — tablet landscape */
@media (max-width: 950px){

  .step-row,
  .step-row.reverse{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .step-text{
    max-width: 640px;
  }

  /* text above images */
  .step-img,
  .step-imgg{
    order: 2;
  }

  .step-text{
    order: 1;
  }

  .step-img img,
  .step-imgg img{
    max-width: 340px;
  }

  .step-number{
    font-size: 42px;
  }

  .step-title{
    font-size: 24px;
  }
}

/* 820 — big tablets portrait */
@media (max-width: 820px){
  .steps{ padding: 70px 6%; }
}

/* 768 — mid tablets */
@media (max-width: 768px){
  .step-text p{ font-size: 16px; }
}

/* 650 — small tablets / large phones */
@media (max-width: 650px){
  .step-row{ margin-bottom: 95px; }
}

/* 520 — normal phones */
@media (max-width: 520px){
  .steps{ padding: 60px 5%; }
}

/* 430 — small phones / fold */
@media (max-width: 430px){
  .step-img img,
  .step-imgg img{
    max-width: 240px;
  }
  .step-imgg img{
    margin-left: 0;
  }
}

/* 375 — extra small */
@media (max-width: 375px){
  .step-text p{ font-size: 14px; }
}


/* 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;
}

.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;

}

.footer-col a,
.footer-col p{
  display:block;
  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;
  }
}


/* TESTIMONIAL GRID */
@media(max-width:900px){
  .testimonial-cards{
    grid-template-columns:1fr;
  }
}

/* FOOTER CTA */
.footer-cta-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

@media(max-width:900px){
  .footer-cta-wrap{
    flex-direction:column;
    text-align:center;
  }

  .footer-cta-phone img{
    max-width:360px;
  }
}
/* ============================
   JOIN PAGE — RESPONSIVE FIX
============================ */

/* HERO */
.join-hero{
  padding:140px 6% 80px;
}

.join-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.join-text{
  flex:1.2;
}

.join-img img{
  max-width:420px;
}

/* MOBILE */
@media(max-width:900px){

  .join-wrap{
    flex-direction:column;
    text-align:center;
  }

  .join-text{
    max-width:650px;
  }

  .join-img img{
    max-width:320px;
    margin:auto;
  }
}


/* TESTIMONIAL GRID */
@media(max-width:900px){
  .testimonial-cards{
    grid-template-columns:1fr;
  }
}

/* FOOTER CTA */
.footer-cta-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

@media(max-width:900px){
  .footer-cta-wrap{
    flex-direction:column;
    text-align:center;
  }

  .footer-cta-phone img{
    max-width:360px;
  }
}
/* ==========================================
   GLOBAL TEXT SCALE — SMALLER BUT READABLE
========================================== */

/* Desktop — slightly smaller */
body{
  font-size: 15px;
}

/* Headings */
h1, .impact-title, .cta-text h2{
  font-size: clamp(26px, 3.2vw, 42px);
}

h2, .step-title{
  font-size: clamp(20px, 2.4vw, 28px);
}

h3{
  font-size: clamp(16px, 2vw, 22px);
}

/* Paragraphs globally */
p, .impact-text, .how-text p, .step-text p{
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.6;
}

/* Numbers / Stats */
.impact-number{
  font-size: clamp(34px, 6vw, 60px);
}

.step-number{
  font-size: clamp(32px, 7vw, 50px);
}

/* CTA buttons & store icons */
.cta-buttons img{
  width: clamp(120px, 22vw, 160px);
}

/* HERO heading special */
.how-text h1{
  font-size: clamp(26px, 4vw, 40px);
}
