:root {
  --green: #1fbf75;
  --dark: #0f172a;
  --light: #ffffff;
  --muted: #64748b;
  --bg: #f8fafc;
}

/* -------- LITE DARK MODE COLORS -------- */
body.dark {
  --bg: #0f172a; /* soft dark blue background */
  --dark: #e5e7eb; /* main readable text */
  --light: #111827; /* card background */
  --muted: #9ca3af; /* secondary text */
}

/* Disable text selection */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
}

/* ---------------- NAVBAR ---------------- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

body.dark header {
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid #1f2937;
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  position: relative;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
  z-index: 1100;
  transition: 0.3s;
}

.menu-toggle.active i::before {
  content: "\f00d"; /* FontAwesome 'times' (X) icon */
}

nav .logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 15px;
  transition: all 0.25s ease;
}

/* Hover effect */
nav ul li a:hover {
  background: rgba(31, 191, 117, 0.12);
  color: var(--green);
  transform: translateY(-1px);
}

nav ul li a.active {
  background: rgba(31, 191, 117, 0.18);
  color: var(--green);
  font-weight: 500;
}

nav ul li a {
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 60%;
}

/* ---------------- SECTIONS ---------------- */
section {
  padding: 50px 24px; /* reduced from 120px */
  max-width: 1200px;
  margin: auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.badge {
  display: inline-block;
  background: #e8f9f1;
  color: var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

body.dark .badge {
  background: rgba(31, 191, 117, 0.15);
  color: #86efac;
}

h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 span {
  color: var(--green);
}

p {
  color: var(--muted);
  font-size: 16px;
}

.cta {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
}

/* ---------------- CARDS ---------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(31, 191, 117, 0.25);
}

body.dark .card {
  background: var(--light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* ---------------- IMPACT ---------------- */
.impact {
  background: linear-gradient(0deg, #e8f9f1, #ffffff);
  border-radius: 30px;
  padding: 60px 50px; /* reduced */
}

body.dark .impact {
  background: linear-gradient(0deg, #111827, #0f172a);
}

/* ---------------- FOOTER ---------------- */
footer {
  background: #020617;
  color: #cbd5f5;
  padding: 80px 24px;
}

footer h3 {
  color: white;
  margin-bottom: 16px;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}

footer a:hover {
  color: var(--green);
}

/* -------- SCROLL FADE ANIMATION -------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- EARLY ACCESS FORM FIX -------- */
.form-container {
  max-width: 850px; /* makes it narrower */
  margin: 60px auto 0; /* centers it */
  padding: 0 10px;
}

.form-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-box iframe {
  width: 100%;
  height: 1100px;
  border: none;
}

.form-header img {
  width: 100%;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}

.logo img {
  height: 36px;
  width: auto;
}

/* -------- COMING SOON SECTION -------- */
.coming-soon {
  text-align: center;
  background: linear-gradient(0deg, #1fbf75, #16a34a);
  color: white;
  border-radius: 30px;
  padding: 55px 40px; /* reduced */
  margin: 10px auto; /* less vertical gap */
}

.coming-soon h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.coming-soon p {
  color: #e6f9ef;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.coming-badge {
  display: inline-block;
  background: white;
  color: #16a34a;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.coming-soon {
  text-align: center;
  background: linear-gradient(0deg, #1fbf75, #16a34a);
  color: white;
  border-radius: 30px;
  padding: 55px 40px; /* reduced */
  margin: 10px auto; /* less vertical gap */
  transition: 0.5s; /* same speed as card */
}

.coming-soon:hover {
  transform: translateY(-6px); /* same lift as card */
}

/* -------- CONTACT REDESIGN -------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--light);
  border-radius: 28px;
  padding: 70px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--light);
  border-radius: 28px;
  padding: 70px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: none; /* disables hover animation */
}

.contact-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-left p {
  margin-bottom: 25px;
}

.contact-details p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-details a {
  color: var(--dark);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--green);
}

/* Social grid */
.contact-right h3 {
  margin-bottom: 20px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f1f5f9;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.25s ease;
}

.social-grid a i {
  font-size: 18px;
}

.social-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f1f5f9;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.25s ease;
}

/* Hover effect outside the box */
.social-grid a:hover {
  background: #f1f5f9; /* keep original background */
  color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(31, 191, 117, 0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }

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

/* -------- ORIGINAL BRAND ICON COLORS -------- */
.icon-facebook {
  color: #1877f2;
}
.icon-instagram {
  color: #e1306c;
}
.icon-linkedin {
  color: #0a66c2;
}
.icon-x {
  color: #000000;
}
.icon-youtube {
  color: #ff0000;
}
.icon-whatsapp {
  color: #25d366;
}
.icon-email {
  color: #ea4335;
}
.icon-phone {
  color: #16a34a;
}

/* Social grid inside card */
.card .social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.card .social-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px; /* bigger box */
  border-radius: 14px;
  background: #f1f5f9;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.25s ease;
}

.card .social-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31, 191, 117, 0.25);
  color: var(--green);
}

/* Map inside contact card */
.map-box {
  margin-top: 15px;
  border-radius: 14px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}
.map-btn {
  display: inline-block;
  margin-top: 18px;
}

.contact-text {
  max-width: 650px;
  margin-top: 16px;
  text-align: left;
}

.contact-intro {
  margin: 14px 0 18px;
  text-align: justify;
  line-height: 1.8;
  max-width: 600px;
}

.contact-info p {
  margin: 6px 0;
  font-size: 15px;
}

/* Remove underline from links */
.contact-info a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--green);
}

.contact-icon {
  color: var(--green);
  margin-right: 8px;
  width: 18px;
}

/* Top layout: text left, social right */
.contact-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 40px;
}

.social-card {
  height: 100%;
}

/* Horizontal map card */
/* -------- ALIGNED MAP WITH CONTACT -------- */
.map-card {
  margin-top: 20px;
}

.map-inner {
  position: relative;
  background: white;
  padding: 10px; /* thinner white border */
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

body.dark .map-inner {
  background: #111827;
}

.map-inner iframe {
  width: 100%;
  height: 260px; /* smaller inner white area */
  border: none;
  border-radius: 14px;
  display: block;
}

/* Direction button */
.map-direction-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 18px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-top {
    grid-template-columns: 1fr;
  }
}

/* -------- WINGGLE PREMIUM FOOTER -------- */
.winggle-footer {
  background: linear-gradient(180deg, #020617, #020617);
  color: #cbd5f5;
  padding: 50px 24px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}

/* Brand */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.footer-logo img {
  height: 36px;
}

.footer-tagline {
  margin: 16px 0 20px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* Columns */
.footer-col h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 10px 0;
  font-size: 14px;
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

/* Contact */
.footer-contact i {
  color: var(--green);
  margin-right: 8px;
}

/* Social */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #0f172a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.25s;
}

.footer-social a:hover {
  background: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(31, 191, 117, 0.18);
}

/* Bottom strip */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #94a3b8;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--green);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer-tagline span {
  display: block;
  margin-top: 2px;
}

.map-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(31, 191, 117, 0.25);
}

/* -------- DAY NIGHT SWITCH -------- */
.mode-switch {
  display: flex;
  align-items: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 72px; /* longer background */
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e5e7eb;
  border-radius: 34px;
  transition: 0.4s;
}

/* circle */
.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* icons fixed positions */
.sun,
.moon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.sun {
  left: 8.5px;
  color: #f59e0b;
}

.moon {
  right: 8.5px;
  color: #0f172a;
}

/* dark mode active */
.switch input:checked + .slider {
  background: #1f2937;
}

.switch input:checked + .slider:before {
  transform: translateX(42px);
}

.switch input:checked + .slider .moon {
  color: #facc15;
}

/* -------- BACK TO TOP BUTTON -------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%; /* perfect circle */
  background: var(--green);
  color: white;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(31, 191, 117, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 2000;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(31, 191, 117, 0.5);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Fix image inside preview card */
.app-preview {
  padding: 1px;
  max-width: 340px; /* keep same size */
  margin-left: auto; /* pushes it to the right */
  margin-right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.app-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* -------- ABOUT GREEN GRADIENT -------- */
.about-gradient {
  background: linear-gradient(0deg, #e8f9f1, #ffffff);
  border-radius: 30px;
  padding: 80px 60px;
}

body.dark .about-gradient {
  background: linear-gradient(0deg, #111827, #0f172a);
}

@media (max-width: 900px) {
  .about-gradient {
    padding: 50px 30px;
  }
}

/* -------- FAQ SECTION -------- */

body.dark .faq-section {
  background: linear-gradient(0deg, #111827, #0f172a);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ item */
.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s;
}

body.dark .faq-item {
  background: #171a26;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(31, 191, 117, 0.2);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  gap: 20px; /* adds space between text and icon */
}

/* text should take full space */
.faq-question span {
  flex: 1;
  text-align: left;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--muted);
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* -------- ABOUT + IMPACT TWO COLUMN LAYOUT -------- */
.about-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .about-impact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ arrow icon */
.faq-icon {
  font-size: 14px;
  color: var(--green);
  transition: transform 0.4s ease;
}

/* rotate arrow when open */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
}

/* -------- COMING SOON POPUP -------- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 5000;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: white;
  padding: 40px 50px;
  border-radius: 18px;
  text-align: center;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: popupScale 0.3s ease;
}

.popup-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-box p {
  margin-bottom: 25px;
  color: #64748b;
}

.popup-box button {
  padding: 10px 24px;
  border: none;
  background: #1fbf75;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

@keyframes popupScale {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* SOCIAL PROOF SECTION */
.social-proof-section {
  text-align: center;
  padding: 16px 20px 10px; /* reduced top gap */
}

.social-proof-center {
  display: inline-block;
}

.proof-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 78px; /* BIG avatars */
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  margin-left: -22px; /* overlap tuned for big size */
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatars img:hover {
  transform: translateY(-8px) scale(1.08);
  z-index: 3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.stars {
  color: #facc15;
  font-size: 22px;
}

.proof-text {
  margin-top: 14px;
  font-size: 18px; /* bigger to match avatars */
  font-weight: 500;
  letter-spacing: 0.4px; /* clean, premium spacing */
  color: #475569; /* softer than pure black */
}

.proof-text span {
  color: #16a34a;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.loading-text {
  color: #94a3b8;
  margin-left: 4px;
  animation: blinkText 1.6s infinite;
}

@keyframes blinkText {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.proof-text {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.proof-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* AVATAR ANIMATION INITIAL STATE */
.avatars img {
  opacity: 0;
  transform: translateY(24px) scale(0.85);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE (animated in) */
.avatars img.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* STAR ANIMATION INITIAL STATE */
.stars i {
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STAR */
.stars i.show {
  opacity: 1;
  transform: scale(1);
}

.menu-toggle.active i::before {
  content: "\f00d"; /* FontAwesome 'times' (X) icon */
}

/* -------- MOBILE RESPONSIVENESS -------- */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  /* Navigation */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--dark);
    cursor: pointer;
    z-index: 1100;
  }

  .menu-toggle.active i::before {
    content: "\f00d"; /* FontAwesome 'times' icon */
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li {
    margin: 15px 0;
  }

  /* Hero */
  .hero {
    padding-top: 120px;
    min-height: auto;
    display: block;
  }

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

  h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .cta {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .app-preview {
    max-width: 280px;
    margin: 0 auto;
    float: none;
  }

  /* Social Proof */
  .avatars img {
    width: 60px;
    height: 60px;
    margin-left: -15px;
  }

  .proof-text {
    font-size: 16px;
  }

  /* Grids */
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 24px;
  }

  .about-impact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact {
    padding: 40px 20px;
  }

  /* FAQ */
  .faq-item.active .faq-answer {
    max-height: 1000px;
  }

  /* Contact */
  .contact-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .form-box iframe {
    height: 1400px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .avatars img {
    width: 50px;
    height: 50px;
    margin-left: -12px;
    border-width: 3px;
  }

  .stars {
    font-size: 18px;
  }

  .proof-text {
    font-size: 14px;
  }
}
