body {
  font-family: 'Inter', sans-serif;
  background: #F6F6F6;
  color: #2D2D2D;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #1F1F1F;
}
h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

p, li {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Header and Nav */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.logo {
  height: 80px;
  transition: transform 0.2s ease;
}
.logo:hover {
  transform: scale(1.02);
}
.counter {
  font-weight: bold;
  font-size: 1.5rem;
  color: #B08D57;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-out;
  display: inline-block;
}

.counter.reveal {
  opacity: 1;
  transform: translateY(0);
}
.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #2D2D2D;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  transition: color 0.2s ease;
    white-space: nowrap;
}
.nav-links li a:hover {
  color: #B08D57;
}
.cta.highlight {
  background: linear-gradient(to right, #B08D57, #CBAE82);
  color: white;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 80px 40px;
  gap: 40px;
  background: #fff;
  flex-wrap: wrap;
}
.hero-image {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.hero-text {
  max-width: 500px;
}
.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: #4caf50;
  color: white;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #388e3c;
}
.cta.highlight:hover {
  background: linear-gradient(to right, #987648, #b69560);
  color: white;
}
.section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.alt-bg {
  background-color: #f9f7f3;
}
.section:nth-child(even) {
  background-color: #F4F1EA;
}
.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-item {
  text-align: center;
  width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}
.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.benefits div {
  width: 260px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  text-align: left;
}
.benefits strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #2E8B57;
}
.platform-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.ui-preview {
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.text-block {
  max-width: 420px;
  text-align: left;
}
.waitlist {
  background: #FFF;
  padding: 80px 20px;
  text-align: center;
}
.waitlist input {
  padding: 16px;
  width: 300px;
  margin-right: 12px;
  border: 1px solid #CCC;
  border-radius: 6px;
  font-size: 1rem;
}
.waitlist button {
  padding: 16px 28px;
  background: #2E8B57;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.waitlist button:hover {
  background: #256d46;
}
footer {
  background-color: #f8f8f8;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #222;
}

.disclaimer.subtle {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.75rem;
  font-style: italic;
  text-align: center;
}
.intro {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
}
.testimonial {
  background: #FFF8E7;
  padding: 60px 20px;
  font-style: italic;
  font-size: 1.1rem;
  color: #4A4A4A;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.03);
}

#tech .benefits div {
  width: 260px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}
#tech .benefits div:hover {
  transform: translateY(-4px);
}
.ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.ecosystem-tile {
  flex: 1 1 480px;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.ecosystem-tile img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.ecosystem-tile h3 {
  font-family: 'Playfair Display', serif;
  color: #B08D57;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
}

.feature-list li {
  margin-bottom: 10px;
  color: #333;
}
html {
  scroll-behavior: smooth;
}
.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto 0;
  text-align: left;
}

.about-columns div {
  flex: 1 1 400px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
nav {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* --- Animation Enhancements --- */
[data-aos] {
  transition-duration: 0.8s;
}

/* --- Section Transitions --- */
.section {
  transition: all 0.5s ease-in-out;
}

/* --- Spaced call-to-actions under each section --- */
.section .cta-footer {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  background-color: #B08D57;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.section .cta-footer:hover {
  background-color: #987648;
}
/* FAQ Grid */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 0 12px;
}

.faq-item {
  background: #fff;
  margin-bottom: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  padding: 20px;
  text-align: left;
  width: 100%;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background-color: #f7f5f0;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.chevron {
  transition: transform 0.3s ease;
}

/* Testimonial */
.testimonial-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  color: #333;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial blockquote {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.testimonial cite {
  display: block;
  font-weight: bold;
  color: #B08D57;
}
.section p, .section ul, .section .intro {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Mobile nav base */
.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0 12px;
  color: #2D2D2D;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #2D2D2D;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  transition: color 0.2s ease;
}
.nav-links li a:hover {
  color: #B08D57;
}

/* CTA button override */
.nav-links .cta.highlight {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 16px;

  background: linear-gradient(to right, #B08D57, #CBAE82);
  color: white;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.nav-links .cta.highlight:hover {
  background: linear-gradient(to right, #987648, #b69560);
  color: white;
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}
.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: #2D2D2D;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  display: none;
}
.menu-overlay.active {
  display: block;
}
body.no-scroll {
  overflow: hidden;
}
html.no-scroll {
  position: fixed;
  width: 100%;
}


/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
  max-width: 260px;
  overflow-x: hidden;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    margin: 16px 0;
  }
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
.product-item,
.benefits div,
.ecosystem-tile {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  .product-grid {
    gap: 30px;
    padding: 0 20px;
  }

.product-item {
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover,
.benefits div:hover,
.ecosystem-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.why-results {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.why-results-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.features {
  flex: 1 1 420px;
  text-align: left;
}

.features ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
  font-size: 1.1rem;
}

.features li {
  margin-bottom: 12px;
}

.metrics .metric-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.metric {
  background: #F9F7F2;
  padding: 20px;
  border-radius: 12px;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1rem;
}

.metric strong {
  font-size: 2rem;
  color: #2E8B57;
}

.why-gogogrow .benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-tile {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.benefit-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.hero-tile {
  border: 2px solid #B08D57;
  background: #fffbe6;
}

.benefit-tile .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.benefit-tile strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
  color: #2D2D2D;
}

.benefit-tile p {
  font-size: 1rem;
  color: #555;
}

.counter {
  font-size: 1.4rem;
  font-weight: bold;
  color: #B08D57;
  display: inline-block;
  transition: all 0.5s ease;
}


@media (min-width: 769px) {
  .nav-links .cta.highlight {
    height: 40px;
    display: flex;
    align-items: center;
  }
}

#lang-toggle {
  background: transparent;
  border: none;
  font-weight: bold;
  cursor: pointer;
  margin-left: 1rem;
  font-size: 1rem;
}

.popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  max-width: 320px;
}

.popup.hidden {
  display: none;
}

.popup-content {
  position: relative;
}

.popup-content input {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.popup-content form {
  margin-top: 1rem;
}

.popup-content button.cta-button {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.popup-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
  color: #999;
}

.popup-close:hover {
  color: #333;
}


.lang-button {
  padding: 8px 14px;
  border: 2px solid #B08D57;
  background-color: transparent;
  color: #B08D57;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.lang-button:hover {
  background-color: #B08D57;
  color: white;
}


/* Language button */
.lang-button.separate {
  margin-left: 20px;
  padding: 8px 16px;
  background: #fff;
  border: 2px solid #B08D57;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-button.separate:hover {
  background: #B08D57;
  color: #fff;
}

/* FAQ cleanup */
.faq-item.clean {
  background: none;
  box-shadow: none;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
}
.faq-question.styled {
  font-weight: bold;
  font-size: 1.1rem;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0;
  margin-bottom: 8px;
}
.faq-answer.styled {
  font-size: 0.95rem;
  color: #444;
  margin-top: -6px;
}

/* Improved persona section styling */
section.persona-highlight {
  background: #f8f7f4;
}
.persona-tile.improved {
  background: #fff;
  padding: 24px;
  margin: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.persona-tile.improved:hover {
  transform: translateY(-4px);
}

/* Fix language button spacing */
.lang-button.separate {
  margin-left: 1.5rem;
  padding: 6px 14px;
  height: 40px;
  display: flex;
  align-items: center;
}

/* Ensure proper display of nav CTA */
.nav-links .cta.highlight {
  margin-top: 0 !important;
}
body {
  font-family: 'Inter', sans-serif;
  background: #F6F6F6;
  color: #2D2D2D;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #1F1F1F;
}
h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

p, li {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Header and Nav */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.logo {
  height: 80px;
  transition: transform 0.2s ease;
}
.logo:hover {
  transform: scale(1.02);
}
.counter {
  font-weight: bold;
  font-size: 1.5rem;
  color: #B08D57;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-out;
  display: inline-block;
}

.counter.reveal {
  opacity: 1;
  transform: translateY(0);
}
.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #2D2D2D;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  transition: color 0.2s ease;
}
.nav-links li a:hover {
  color: #B08D57;
}
.cta.highlight {
  background: linear-gradient(to right, #B08D57, #CBAE82);
  color: white;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 80px 40px;
  gap: 40px;
  background: #fff;
  flex-wrap: wrap;
}
.hero-image {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.hero-text {
  max-width: 500px;
}
.cta-button {
  background-color: #B08D57;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 24px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #987648;
}

.cta.highlight:hover {
  background: linear-gradient(to right, #987648, #b69560);
  color: white;
}
.section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.alt-bg {
  background-color: #f9f7f3;
}
.section:nth-child(even) {
  background-color: #F4F1EA;
}
.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-item {
  text-align: center;
  width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}
.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.benefits div {
  width: 260px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  text-align: left;
}
.benefits strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #2E8B57;
}
.platform-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.ui-preview {
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.text-block {
  max-width: 420px;
  text-align: left;
}
.waitlist {
  background: #FFF;
  padding: 80px 20px;
  text-align: center;
}
.waitlist input {
  padding: 16px;
  width: 300px;
  margin-right: 12px;
  border: 1px solid #CCC;
  border-radius: 6px;
  font-size: 1rem;
}
.waitlist button {
  padding: 16px 28px;
  background: #2E8B57;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.waitlist button:hover {
  background: #256d46;
}
footer {
  background: #2D2D2D;
  color: white;
  text-align: center;
  padding: 24px;
  font-size: 0.95rem;
}
.intro {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
}
.testimonial {
  background: #FFF8E7;
  padding: 60px 20px;
  font-style: italic;
  font-size: 1.1rem;
  color: #4A4A4A;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.03);
}

#tech .benefits div {
  width: 260px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}
#tech .benefits div:hover {
  transform: translateY(-4px);
}
.ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.ecosystem-tile {
  flex: 1 1 480px;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.ecosystem-tile img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.ecosystem-tile h3 {
  font-family: 'Playfair Display', serif;
  color: #B08D57;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
}

.feature-list li {
  margin-bottom: 10px;
  color: #333;
}
html {
  scroll-behavior: smooth;
}
.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 40px auto 0;
  text-align: left;
}

.about-columns div {
  flex: 1 1 400px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
nav {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* --- Animation Enhancements --- */
[data-aos] {
  transition-duration: 0.8s;
}

/* --- Section Transitions --- */
.section {
  transition: all 0.5s ease-in-out;
}

/* --- Spaced call-to-actions under each section --- */
.section .cta-footer {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  background-color: #B08D57;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.section .cta-footer:hover {
  background-color: #987648;
}
/* FAQ Grid */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 0 12px;
}

.faq-item {
  background: #fff;
  margin-bottom: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  padding: 20px;
  text-align: left;
  width: 100%;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background-color: #f7f5f0;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.chevron {
  transition: transform 0.3s ease;
}

/* Testimonial */
.testimonial-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  color: #333;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial blockquote {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.testimonial cite {
  display: block;
  font-weight: bold;
  color: #B08D57;
}
.section p, .section ul, .section .intro {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* Mobile nav base */
.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0 12px;
  color: #2D2D2D;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #2D2D2D;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  transition: color 0.2s ease;
}
.nav-links li a:hover {
  color: #B08D57;
}

/* CTA button override */
.nav-links .cta.highlight {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 16px;

  background: linear-gradient(to right, #B08D57, #CBAE82);
  color: white;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.nav-links .cta.highlight:hover {
  background: linear-gradient(to right, #987648, #b69560);
  color: white;
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}
.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: #2D2D2D;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  display: none;
}
.menu-overlay.active {
  display: block;
}
body.no-scroll {
  overflow: hidden;
}
html.no-scroll {
  position: fixed;
  width: 100%;
}


/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
  max-width: 260px;
  overflow-x: hidden;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    margin: 16px 0;
  }
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
.product-item,
.benefits div,
.ecosystem-tile {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  .product-grid {
    gap: 30px;
    padding: 0 20px;
  }

.product-item {
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover,
.benefits div:hover,
.ecosystem-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.why-results {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.why-results-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.features {
  flex: 1 1 420px;
  text-align: left;
}

.features ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
  font-size: 1.1rem;
}

.features li {
  margin-bottom: 12px;
}

.metrics .metric-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.metric {
  background: #F9F7F2;
  padding: 20px;
  border-radius: 12px;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1rem;
}

.metric strong {
  font-size: 2rem;
  color: #2E8B57;
}

.why-gogogrow .benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-tile {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.benefit-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.hero-tile {
  border: 2px solid #B08D57;
  background: #fffbe6;
}

.benefit-tile .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.benefit-tile strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
  color: #2D2D2D;
}

.benefit-tile p {
  font-size: 1rem;
  color: #555;
}

.counter {
  font-size: 1.4rem;
  font-weight: bold;
  color: #B08D57;
  display: inline-block;
  transition: all 0.5s ease;
}


@media (min-width: 769px) {
  .nav-links .cta.highlight {
    height: 40px;
    display: flex;
    align-items: center;
  }
}

#lang-toggle {
  background: transparent;
  border: none;
  font-weight: bold;
  cursor: pointer;
  margin-left: 1rem;
  font-size: 1rem;
}

.popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  max-width: 320px;
}
.popup.hidden {
  display: none;
}
.popup-content input {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.popup-content button.cta-button {
  width: 100%;
}
.popup-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}

.lang-button {
  padding: 8px 14px;
  border: 2px solid #B08D57;
  background-color: white;
  color: #B08D57;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
  white-space: nowrap;
  margin-left: 1rem;
  z-index: 2;
}

.lang-button:hover {
  background-color: #B08D57;
  color: white;
}

.popup-content form {
  margin-top: 1rem;
}


/* Language button */
.lang-button.separate {
  margin-left: 20px;
  padding: 8px 16px;
  background: #fff;
  border: 2px solid #B08D57;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-button.separate:hover {
  background: #B08D57;
  color: #fff;
}

/* FAQ cleanup */
.faq-item.clean {
  background: none;
  box-shadow: none;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
}
.faq-question.styled {
  font-weight: bold;
  font-size: 1.1rem;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0;
  margin-bottom: 8px;
}
.faq-answer.styled {
  font-size: 0.95rem;
  color: #444;
  margin-top: -6px;
}

/* Improved persona section styling */
section.persona-highlight {
  background: #f8f7f4;
}
.persona-tile.improved {
  background: #fff;
  padding: 24px;
  margin: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.persona-tile.improved:hover {
  transform: translateY(-4px);
}

/* Fix language button spacing */
.lang-button.separate {
  margin-left: 1.5rem;
  padding: 6px 14px;
  height: 40px;
  display: flex;
  align-items: center;
}

/* Ensure proper display of nav CTA */
.nav-links .cta.highlight {
  margin-top: 0 !important;
}
.nav-links::after {
  content: "";
  flex: 1;
}
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 0.75em 1.5em;
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  font-size: 0.95rem;
  z-index: 9999;
  transition: background-color 0.3s ease;
}

.floating-button:hover {
  background-color: #388e3c;
}
