/* =========================
   RESET
========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f8fafc;
  color:#0f172a;
  overflow-x:hidden;
  line-height:1.6;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
}

/* =========================
   CONTAINER
========================= */

.container{
  width:92%;
  max-width:1050px;
  margin:auto;
  padding:0 20px;
}

/* =========================
   NAVBAR
========================= */

nav{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;

  background:rgba(255,255,255,.92);

  backdrop-filter:blur(12px);

  border-bottom:1px solid #e2e8f0;
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:80px;
}



.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-links a{
  color:#334155;
  font-weight:500;
  transition:.3s;
}

.nav-links a:hover{
  color:#16a34a;
}

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-block;

  padding:14px 24px;

  border-radius:14px;

  font-weight:600;

  transition:.3s;
}

.btn-primary{
  background:#16a34a;
  color:white;

  box-shadow:
    0 12px 30px rgba(22,163,74,.25);
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:#15803d;
}

.btn-outline{
  border:2px solid #16a34a;
  color:#16a34a;
}

.btn-outline:hover{
  background:#16a34a;
  color:white;
}

/* =========================
   HERO
========================= */

.hero{
  padding-top:150px;
  padding-bottom:100px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero h1{
  font-size:3.5rem;
  line-height:1.1;
  font-weight:800;

  margin-bottom:24px;

  color:#020617;
}

.hero h1 span{
  color:#16a34a;
}

.hero p{
  font-size:1.08rem;
  color:#475569;

  line-height:1.9;

  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* =========================
   HERO CHAT CARD
========================= */

.hero-card{
  background:white;

  padding:35px;

  border-radius:28px;

  box-shadow:
    0 25px 60px rgba(15,23,42,.08);
}

.chat-box{
  background:#f1f5f9;

  padding:18px;

  border-radius:18px;

  margin-bottom:18px;

  color:#334155;

  line-height:1.7;

  font-size:.95rem;
}

.chat-green{
  background:#dcfce7;
  border-left:5px solid #16a34a;
}

/* =========================
   STATS
========================= */

.stats{
  padding:80px 0;
}

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

.stat-card{
  background:white;

  padding:35px;

  border-radius:22px;

  text-align:center;

  box-shadow:
    0 10px 30px rgba(15,23,42,.05);
}

.stat-card h2{
  font-size:2.4rem;
  color:#16a34a;
  margin-bottom:10px;
}

.stat-card p{
  color:#64748b;
  font-weight:500;
}

/* =========================
   SECTIONS
========================= */

.section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:3rem;
  margin-bottom:20px;
}

.section-title p{
  color:#64748b;
  line-height:1.8;

  max-width:700px;
  margin:auto;
}

/* =========================
   FEATURES
========================= */

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-card{
  background:white;

  padding:35px;

  border-radius:24px;

  box-shadow:
    0 10px 30px rgba(15,23,42,.05);

  transition:.3s;
}

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

.feature-icon{
  width:70px;
  height:70px;

  border-radius:18px;

  background:#dcfce7;

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

  font-size:2rem;

  margin-bottom:25px;
}

.feature-card h3{
  margin-bottom:15px;
  font-size:1.3rem;
}

.feature-card p{
  color:#64748b;
  line-height:1.8;
}

/* =========================
   HOW IT WORKS
========================= */

.steps{
  background:#0f172a;
  color:white;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.step-card{
  background:#1e293b;

  padding:35px;

  border-radius:24px;
}

.step-number{
  width:55px;
  height:55px;

  border-radius:50%;

  background:#16a34a;

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

  font-weight:700;

  margin-bottom:20px;
}

.step-card h3{
  margin-bottom:15px;
}

.step-card p{
  color:#cbd5e1;
  line-height:1.8;
}

/* =========================
   FAQ
========================= */

.hidden-faq{
  display:none;
}

.hidden-faq.show{
  display:block;

  animation:fadeFaq .45s ease;
}

@keyframes fadeFaq{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.faq-container{
  max-width:850px;
  margin:auto;
}

.faq-item{
  background:white;

  border-radius:20px;

  margin-bottom:18px;

  overflow:hidden;

  box-shadow:
    0 10px 30px rgba(15,23,42,.05);

  transition:.3s;
}

.faq-item:hover{
  transform:translateY(-2px);
}

.faq-question{
  width:100%;

  border:none;

  background:white;

  padding:24px;

  font-size:1rem;

  font-weight:600;

  color:#0f172a;

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

  cursor:pointer;

  transition:.3s;
}

.faq-question:hover{
  background:#f8fafc;
}

.faq-question span{
  color:#16a34a;
  font-size:1.5rem;

  transition:.3s;
}

.faq-answer{
  max-height:0;

  overflow:hidden;

  padding:0 24px;

  color:#64748b;

  line-height:1.9;

  transition:
    max-height .35s ease,
    padding .35s ease;
}

.faq-item.active .faq-answer{
  max-height:300px;

  padding:
    0 24px 24px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

/* =========================
   CTA
========================= */

.cta{
  padding:120px 0;
  text-align:center;
}

.cta-box{
  background:
    linear-gradient(
      135deg,
      #16a34a,
      #15803d
    );

  color:white;

  border-radius:40px;

  padding:80px 40px;

  box-shadow:
    0 25px 60px rgba(22,163,74,.25);
}

.cta-box h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta-box p{
  max-width:700px;

  margin:auto;

  line-height:1.8;

  margin-bottom:35px;

  opacity:.95;
}

.cta-box .btn{
  background:white;
  color:#16a34a;
}

/* =========================
   FOOTER
========================= */

footer{
  background:#020617;
  color:#94a3b8;
  padding:60px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}

.footer-logo{
  color:white;
  font-size:2rem;
  font-weight:800;
  margin-bottom:20px;
}

footer h4{
  color:white;
  margin-bottom:20px;
}

footer ul{
  list-style:none;
}

footer li{
  margin-bottom:12px;
}

footer a{
  color:#94a3b8;
  transition:.3s;
}

footer a:hover{
  color:white;
}

/* =========================
   SOCIALS
========================= */

.socials{
  display:flex;
  gap:14px;
  margin-top:28px;
}

.socials a{
  width:48px;
  height:48px;

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

  border-radius:50%;

  background:#111827;

  color:white;

  transition:.3s ease;

  box-shadow:
    0 10px 25px rgba(0,0,0,.15);
}

.socials a:hover{
  background:#16a34a;

  transform:
    translateY(-4px)
    scale(1.05);
}

.socials svg{
  width:20px;
  height:20px;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
  margin-top:60px;

  padding-top:25px;

  border-top:
    1px solid rgba(255,255,255,.08);

  text-align:center;

  color:#64748b;

  font-size:.95rem;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .hero-grid,
  .features-grid,
  .steps-grid,
  .stats-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:2.8rem;
  }

  .section-title h2{
    font-size:2.2rem;
  }

  .cta-box h2{
    font-size:2.2rem;
  }

  .nav-links{
    display:none;
  }

  .stats-grid{
    gap:18px;
  }

}

/* =========================
   UPDATED CTA CONNECT SECTION
========================= */

.connect-grid{
  display:grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  align-items:stretch;

  gap:20px;

  margin-top:45px;
}

.connect-card{
  background:rgba(255,255,255,.12);

  border:1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(12px);

  border-radius:24px;

  padding:28px;

  transition:.3s;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  min-height:320px;
}

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

.connect-icon{
  width:62px;
  height:62px;

  border-radius:18px;

  background:white;

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

  font-size:1.7rem;

  margin-bottom:20px;
}

.connect-card h3{
  margin-bottom:12px;

  font-size:1.2rem;
}

.connect-card p{
  line-height:1.7;

  opacity:.92;

  margin-bottom:18px;

  font-size:.96rem;
}

.connect-btn{
  background:white;
  color:#16a34a;

  width:100%;

  text-align:center;
}

.connect-btn:hover{
  background:#f8fafc;
}

.qr-box{
  height:130px;

  border-radius:18px;

  background:white;

  color:#64748b;

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

  font-weight:700;

  font-size:.95rem;
}

.phone-box{
  background:white;

  padding:14px;

  border-radius:14px;

  color:#0f172a;

  font-weight:700;

  font-size:.96rem;

  text-align:center;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

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

  .connect-card{
    min-height:auto;
  }

}

/*----------------LOGO RESPONSIVE */
.logo{
    display:flex;
    align-items:center;
    max-width:200px;
}

.logo img{
    width:100%;
    height:auto;
    display:block;
}

@media(max-width:768px){

    .logo{
        max-width:170px;
    }

}


/*-----hamburger menu------*/
/* HAMBURGER */

.menu-toggle{

  display:none;

  flex-direction:column;

  gap:5px;

  cursor:pointer;
}

.menu-toggle span{

  width:28px;
  height:3px;

  background:#0f172a;

  border-radius:20px;

  transition:.3s;
}

@media(max-width:992px){

  .menu-toggle{
    display:flex;
  }

  .nav-links{

    position:absolute;

    top:90px;
    left:0;

    width:100%;

    background:white;

    display:none;

    flex-direction:column;

    gap:20px;

    padding:30px;

    box-shadow:
      0 15px 40px rgba(0,0,0,.08);
  }

  .nav-links.active{
    display:flex;
	flex-direction:column;
  }

}

.menu-toggle.active span:nth-child(1){
  transform:
    rotate(45deg)
    translateY(11px);
}

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

.menu-toggle.active span:nth-child(3){
  transform:
    rotate(-45deg)
    translateY(-11px);
}



/*Privacy Policy styles**/

.policy-content{
    max-width:900px;
    margin:0 auto;
    line-height:1.9;
}

.policy-content h2{
    margin-top:40px;
    margin-bottom:15px;
}

.policy-content h3{
    margin-top:25px;
    margin-bottom:10px;
}

.policy-content ul{
    margin-left:25px;
    margin-bottom:20px;
}

.policy-content p{
    margin-bottom:18px;
}

/**Terms content***/
.policy-content{
max-width:900px;
margin:0 auto;
line-height:1.9;
}

.policy-content h2{
margin-top:40px;
margin-bottom:15px;
font-size:1.5rem;
}

.policy-content h3{
margin-top:25px;
margin-bottom:10px;
}

.policy-content ul{
margin-left:25px;
margin-bottom:20px;
}

.policy-content li{
margin-bottom:8px;
}

.policy-content p{
margin-bottom:18px;
}

.policy-content a{
color:#0339A5;
}


/***


.connect-card .qr-box {
    text-align: center;
}

.connect-card .qr-box img,
.connect-card .qr-box .qr-code-img {
    width: 150px !important;
    height: 150px !important;
    max-width: 150px !important;
    max-height: 150px !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}


**/


#faq {
    display: none;
}

#faq.show {
    display: block;
}