
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  line-height: 1.6;
  color: #1f2937;
}
a{
  text-decoration: none;
  color: #065f46;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR STYLES */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.navbar::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #10b981;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #065f46;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #10b981;
}

/* Navbar button */
.btn-navbar {
  background: #10b981;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-navbar:hover {
  background: #059669;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger {
  height: 3px;
  width: 100%;
  background: #10b981;
  border-radius: 3px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-menu.show {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .btn-navbar {
    align-self: stretch;
    text-align: center;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }
}

 .hero {
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: #10b981;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #10b981;
  color: white;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #10b981;
  color: #10b981;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.hero-trust {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #065f46;
}

.hero-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.hero-list {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-list li {
  margin-bottom: 1rem;
}

.hero-list strong {
  display: block;
  color: #111827;
}

.hero-list span {
  font-size: 0.9rem;
  color: #6b7280;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
}

.hero-stats h4 {
  color: #10b981;
  font-size: 1.8rem;
}

.hero-stats p {
  font-size: 0.85rem;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}


/* HOW SECTION */
.how {
    padding: 40px 0px;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header h2 span {
  color: #10b981;
}

.section-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6b7280;
}

/* GRID */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */
.how-card {
  background: white;
  padding: 2.2rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
}

.how-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: border-color 0.35s ease;
}

.how-card:hover {
  transform: translateY(-8px);
}

.how-card:hover::after {
  border-color: #10b981;
}

.how-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.how-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.how-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.how-card ul {
  list-style: none;
  padding: 0;
}

.how-card li {
  font-size: 0.9rem;
  color: #065f46;
  margin-bottom: 0.4rem;
}

/* CALLOUT */
.how-callout {
  margin-top: 3rem;
  background: #ecfdf5;
  border-left: 6px solid #10b981;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #065f46;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* PROS & CONS SECTION */
.pros-cons {
    padding: 40px 0px;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

/* GRID */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

/* SHARED CARD STYLES */
.pros-card, .cons-card {
  background: white;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.35s ease;
}

.pros-card:hover,
.cons-card:hover {
  transform: translateY(-8px);
}

/* PROS */
.pros-card h3 {
  color: #065f46;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pros-card li strong {
  color: #047857;
}

/* CONS */
.cons-card h3 {
  color: #92400e;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.cons-card li strong {
  color: #78350f;
}

/* LISTS */
.pros-card ul,
.cons-card ul {
  list-style: none;
  padding: 0;
}

.pros-card li,
.cons-card li {
  margin-bottom: 1.2rem;
}

.pros-card span,
.cons-card span {
  display: block;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

/* NOTE */
.pros-cons-note {
  margin-top: 3rem;
  max-width: 850px;
  background: #ecfdf5;
  border-left: 6px solid #10b981;
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #065f46;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .pros-card, .cons-card {
    padding: 2rem;
  }
}

/* DECORATIVE BACKGROUND SHAPES */
.decorative-bg {
  position: relative;
  overflow: hidden;
}

/* Top Right Circle */
.decorative-bg::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  z-index: 0;
}

/* Bottom Left Circle */
.decorative-bg::before {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  z-index: 0;
}

/* Ensure content stays above shapes */
.decorative-bg > .container {
  position: relative;
  z-index: 1;
}
.decorative-bg2 {
  padding: 3% 0;
  position: relative;
  overflow: hidden;
}

/* Top Right Circle */
.decorative-bg2::after {
  content: "";
  position: absolute;
  top: 120px;
  right: 200px;
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  z-index: 0;
}

/* Bottom Left Circle */
.decorative-bg2::before {
  content: "";
  position: absolute;
  bottom: -140px;
  left: 140px;
  width: 420px;
  height: 420px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  z-index: 0;
}

/* Ensure content stays above shapes */
.decorative-bg2 > .container {
  position: relative;
  z-index: 1;
}



/* CTA SECTION */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
  position: relative;
}

/* GRID */
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* CONTENT */
.cta-badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-content h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.cta-content h2 span {
  color: #10b981;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.cta-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.cta-benefits li {
  margin-bottom: 0.5rem;
  color: #065f46;
  font-weight: 500;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cta-note {
  font-size: 0.85rem;
  color: #6b7280;
}

/* CARD */
.cta-card {
  background: white;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.cta-steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step span {
  width: 36px;
  height: 36px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.cta-trust {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #065f46;
  background: #ecfdf5;
  padding: 0.7rem;
  border-radius: 8px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2.1rem;
  }
  
  .cta-benefits {
    align-items: center;
  }
}

@media (max-width: 576px){
  .step span {
    width: 40px;
    height: 32px;
  }
  .cta-actions {
    flex-direction: column;
  }
}
/* QUIZ */
.quiz {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.quiz-wrapper {
  max-width: 720px;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.quiz-header h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}
.quiz-header h2 span{
  color: #10b981;
}

.quiz-badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.quiz-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* PROGRESS */
.quiz-progress {
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  margin-bottom: 2rem;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: #10b981;
  border-radius: 10px;
  transition: width 0.3s ease;
}

/* QUESTIONS */
.quiz-question.active {
  display: block;
}

.quiz-question h3 {
  margin-bottom: 1rem;
}

.quiz-question label {
  display: block;
  padding: 0.7rem;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

/* ACTIONS */
.quiz-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

/* CONTACT STEP */
.quiz-contact-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
}

.contact-fields {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-fields input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.contact-fields input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.consent {
  font-size: 0.85rem;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .quiz-card {
    padding: 1.5rem;
  }
  .quiz-header h2 {
  font-size: 2rem;
}
.quiz-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    flex-direction: column;
}

}



/* FOOTER */
.footer {
  background: #111827;
  color: #d1d5db;
  padding-top: 4rem;
  position: relative;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

/* BRAND */
.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: #10b981;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 340px;
}

/* LINKS */
.footer-links h4 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #f9fafb;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #10b981;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}
