
    * {
  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;
}
html{
  scroll-behavior: smooth;
}
.section{
  scroll-margin-top: 80px;
}
.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;
}

.btn-navbar {
  background: #222222;
  border-radius: 30px;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-navbar:hover {
  background: #1f2937;
}

/* 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 - Fresh Unique Design */
.hero {
  background: linear-gradient(135deg, #fff7f0, #e0f7f5);
  color: #1f2937;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.hero-shapes {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.15;
}

.hero-shape1 { background: #f8b497; top: 50px; left: 350px; }
.hero-shape2 { background: #7ed9c1; bottom: -60px; right: -60px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #000;
}

.hero-content h1 span {
  color: #4ade80; /* mint accent */
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #222222;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1f2937;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #4ade80;
  color: #4ade80;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}
.btn-secondary:hover{
  background-color: #4ade80;
  color: #fff;
}

.hero-card {
  background: #fff;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.hero-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color:#4ade80;
}

.hero-list {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
}

.hero-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.hero-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-size: 1.2rem;
  line-height: 1;
}

.hero-list strong {
  display: block;
  color: #1f2937;
}

.hero-list span {
  font-size: 0.95rem;
  color: #6b7280;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 1rem;
}

.hero-stats div h4 {
  color: #ff7a5c;
  font-size: 1.8rem;
}

.hero-stats div p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1{
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .hero{
    padding: 3rem 0rem;
  }
}

/* HOW SECTION - Fresh Design */
.how {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fef9f4, #f0f9ff);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.how::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 205, 178, 0.2);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.how::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(125, 211, 252, 0.2);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  background: #fde68a;
  color: #b45309;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title span {
  color: #22c55e;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.6;
}

/* GRID - horizontal steps */
.how-grid {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.how-card {
  flex: 1 1 30%;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.how-card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #86efac);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.how-card h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: #1f2937;
}

.how-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.how-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-card li {
  font-size: 0.9rem;
  color: #065f46;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.how-card li::before {
  content: "✔";
  color: #22c55e;
  margin-right: 0.5rem;
  font-weight: bold;
}

/* CALLOUT */
.how-callout {
  margin: auto;
  margin-top: 3rem;
  max-width: 800px;
  background: #fefce8;
  border-left: 6px solid #facc15;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  color: #b45309;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .how-grid {
    flex-direction: column;
  }
  .how-card {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .how {
    padding: 3rem 0rem;
  }
  .section-header {
  text-align: start;
  font-size: 2.5rem;
}
}


/* PROS & CONS SECTION - Fresh Design */
.pros-cons {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fdf8ff, #f0fcf9);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.pros-cons::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 50%;
  top: 100px;
  left: 200px;
}

.pros-cons::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
}

/* GRID */
.pros-cons-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

/* CARD */
.pros-card, .cons-card {
  flex: 1 1 350px;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pros-card:hover, .cons-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* PROS CARD */
.pros-card {
  background: linear-gradient(135deg, #f3fff8, #f2fff9cc);
  color: #065f46;
}

.pros-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #065f46;
}

/* CONS CARD */
.cons-card {
  background: linear-gradient(135deg, #fffff5, #fffef0b9);
  color: #222222;
}

.cons-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #222222;
}

/* LISTS */
.pros-card ul, .cons-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-card li, .cons-card li {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 1rem;
}

.pros-card li strong::before {
  content: "✔";
  margin-right: 0.8rem;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
}

.cons-card li strong::before {
  content: "⚠";
  margin-right: 0.8rem;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
  color: rgb(248, 99, 99);
}

.pros-card span, .cons-card span {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.4;
}

/* NOTE */
.pros-cons-note {
  margin-top: 3.5rem;
  max-width: 850px;
  background: #fefce8;
  border-left: 6px solid #f59e0b;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  font-size: 1rem;
  color: #92400e;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pros-cons-grid {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .pros-cons {
    padding: 3rem 0rem;
  }
  .pros-card li, .cons-card li {
    display: flex;
    flex-direction: column;
}
}

/* CTA SECTION - Modern Redesign */
.cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fef7ff, #e0f7fa);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.cta::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.cta::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  bottom: -80px;
  right: -60px;
}

/* GRID */
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 1;
  position: relative;
}

/* CONTENT */
.cta-badge {
  display: inline-block;
  background: #f9d5ff;
  color: #9b23b6;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-content h2 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.cta-content h2 span {
  color: #22c55e;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 2rem;
  max-width: 520px;
}

.cta-benefits {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
}

.cta-benefits li {
  margin-bottom: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #065f46;
}

.cta-benefits li::before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cta-actions button {
  background: #22c55e;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-actions button:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.85rem;
  color: #6b7280;
}

/* CARD */
.cta-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.cta-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #374151;
}

/* STEPS */
.cta-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step span {
  width: 40px;
  height: 40px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;  
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
}

/* TRUST */
.cta-trust {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #065f46;
  background: #f0fdf4;
  padding: 0.8rem;
  border-radius: 12px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-actions {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .step span {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .cta {
    padding: 3rem 0rem;
  }
}

 /* QUIZ SECTION */
.quiz {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fef7ff, #e0f7fa);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.quiz::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 50%;
  top: 50px;
  left: 250px;
}

.quiz::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  bottom: 50px;
  right:  130px;
}

.quiz-wrapper {
  max-width: 720px;
  margin: 20px auto;
  position: relative;
  z-index: 1;
}

/* HEADER */
.quiz-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quiz-badge {
  display: inline-block;
  background: #f9d5ff;
  color: #9b23b6;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quiz-header h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.quiz-header h2 span {
  color: #22c55e;
}

.quiz-header p {
  font-size: 1rem;
  color: #374151;
}

/* QUIZ CARD */
.quiz-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* PROGRESS */
.quiz-progress {
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  margin-bottom: 2rem;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: #22c55e;
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* QUESTIONS */
.quiz-question {
  animation: fadeIn 0.5s ease forwards;
}

.quiz-question h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #374151;
}

/* OPTION BUTTONS */
.quiz-question label {
  display: block;
  padding: 0.9rem 1rem;
  background: #f3f4f6;
  border-radius: 12px;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: background 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.quiz-question label:hover {
  background: #e0f7fa;
  border-color: #22c55e;
}


/* 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: 1rem;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-fields input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.15);
}

.consent {
  font-size: 0.85rem;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* BUTTONS */
.quiz-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}


/* RESULT STEP */
.quiz-result-text {
  font-size: 1rem;
  color: #065f46;
  background: #f0fdf4;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  text-align: center;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .quiz-card {
    padding: 2rem;
  }
  .quiz-header h2 {
    font-size: 2rem;
  }
  .quiz {
    padding: 2rem 0rem;
  }
  .quiz-actions {
    display: flex;
    gap: 10px;
    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;
  }
}
