.testimonials-section {
  max-width: 900px;
  margin: 48px auto 0 auto;
  text-align: center;
  padding: 32px 18px 18px 18px;
  background: linear-gradient(135deg, #fff6e0 0%, #e7d7b1 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(191, 167, 106, 0.10);
}
.testimonials-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #bfa76a;
  margin-bottom: 24px;
}
.testimonials-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 120px;
  margin-bottom: 24px;
}
.testimonial {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
  font-size: 1.18rem;
  color: #3a2c1a;
  font-weight: 500;
  margin-bottom: 12px;
  max-width: 600px;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 2px 12px rgba(191, 167, 106, 0.08);
  display: none;
}
.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
.testimonial-author {
  display: block;
  color: #bfa76a;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}
.as-seen-in {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #7c6c4b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.as-seen-logo {
  height: 32px;
  width: auto;
  filter: grayscale(1) brightness(1.2);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.as-seen-logo:hover {
  filter: grayscale(0) brightness(1.1);
  opacity: 1;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 32px;
  animation: gridFadeIn 1.2s;
}
@keyframes gridFadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.module {
  background: linear-gradient(135deg, #fff6e0 0%, #e7d7b1 100%);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18);
  padding: 36px 28px;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
  position: relative;
  animation: modulePulse 2s infinite alternate;
}
@keyframes modulePulse {
  0% { box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18); }
  100% { box-shadow: 0 16px 48px #bfa76a; }
}
.module:hover {
  background: linear-gradient(135deg, #e7d7b1 0%, #bfa76a 100%);
  transform: scale(1.06) translateY(-8px);
  box-shadow: 0 16px 48px #bfa76a;
}
.module-icon {
  width: 56px;
  height: 56px;
  font-size: 2.6rem;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bfa76a 0%, #fff6e0 100%);
  box-shadow: 0 4px 24px rgba(191, 167, 106, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPulse 1.5s infinite alternate;
}
@keyframes iconPulse {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}
.module h3 {
  font-size: 1.6rem;
  color: #bfa76a;
  margin: 0 0 14px 0;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.module p {
  font-size: 1.15rem;
  color: #3a2c1a;
  margin: 0;
  font-weight: 500;
}
.module-fomo {
  display: block;
  color: #bfa76a;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.01em;
}
.dramatic-hero {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff6e0;
}
.hero-svg-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  animation: heroBgPulse 6s infinite alternate;
}
@keyframes heroBgPulse {
  0% { opacity: 0.85; }
  100% { opacity: 1; }
}
.hero-glass {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(16px);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 96px 24px 64px 24px;
}
.dramatic-title {
  font-size: 4.2rem;
  font-weight: 900;
  color: #bfa76a;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 32px rgba(191, 167, 106, 0.18);
  margin-bottom: 18px;
  animation: titleGlow 2s infinite alternate;
}
.hero-flare {
  font-size: 2.2rem;
  color: #fff6e0;
  margin-left: 12px;
  animation: flarePulse 1.5s infinite alternate;
}
@keyframes titleGlow {
  0% { text-shadow: 0 4px 32px rgba(191, 167, 106, 0.18); }
  100% { text-shadow: 0 8px 48px #bfa76a; }
}
@keyframes flarePulse {
  0% { color: #fff6e0; }
  100% { color: #bfa76a; }
}
.dramatic-desc {
  font-size: 1.6rem;
  color: #3a2c1a;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-exclusivity {
  display: block;
  font-size: 1.1rem;
  color: #bfa76a;
  font-weight: 700;
  margin-top: 8px;
}
.dramatic-cta {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #bfa76a 0%, #fff6e0 100%);
  border: none;
  border-radius: 18px;
  padding: 22px 56px;
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 32px;
  animation: ctaPulse 2s infinite alternate;
}
.dramatic-cta:hover {
  background: linear-gradient(90deg, #fff6e0 0%, #bfa76a 100%);
  transform: scale(1.06);
}
@keyframes ctaPulse {
  0% { box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18); }
  100% { box-shadow: 0 16px 48px #bfa76a; }
}
.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
}
.hero-badge {
  background: linear-gradient(90deg, #fff6e0 0%, #bfa76a 100%);
  color: #3a2c1a;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 24px;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px rgba(191, 167, 106, 0.10);
}
@media (max-width: 900px) {
  .dramatic-title {
    font-size: 2.2rem;
  }
  .hero-content {
    padding: 48px 12px 32px 12px;
  }
}
body {
  scroll-behavior: smooth;
}
.main-nav {
  box-shadow: 0 4px 24px rgba(191, 167, 106, 0.10);
  background: rgba(255, 246, 224, 0.92);
  transition: background 0.3s, box-shadow 0.3s;
}
.main-nav.scrolled {
  background: rgba(255, 246, 224, 0.98);
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18);
}
.hero-section {
  background: linear-gradient(120deg, #fff6e0 0%, #e7d7b1 100%);
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.10);
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}
.hero-glass {
  background: rgba(255,255,255,0.5);
  border-radius: 0 0 32px 32px;
}
.modal-content {
  background: linear-gradient(135deg, #fff6e0 0%, #e7d7b1 100%);
  border: 2px solid #bfa76a;
}
.module {
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}
.module:hover {
  background: linear-gradient(135deg, #fff6e0 0%, #e7d7b1 100%);
}
.signup-btn, .hero-cta {
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18);
}
@media (max-width: 400px) {
  .modal-content {
    padding: 18px 4px;
    max-width: 98vw;
  }
}
.sticky-signup-cta {
  position: sticky;
  top: 80px;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  z-index: 50;
}
.signup-btn {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #bfa76a 0%, #e7d7b1 100%);
  border: none;
  border-radius: 16px;
  padding: 18px 48px;
  box-shadow: 0 4px 24px rgba(160, 140, 90, 0.12);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.signup-btn:hover {
  background: linear-gradient(90deg, #e7d7b1 0%, #bfa76a 100%);
  transform: scale(1.04);
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.signup-form input {
  font-size: 1.1rem;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e7d7b1;
  background: #fff;
  color: #3a2c1a;
  outline: none;
  transition: border 0.2s;
}
.signup-form input:focus {
  border: 1.5px solid #bfa76a;
}
.signup-submit {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #bfa76a 0%, #e7d7b1 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  box-shadow: 0 2px 12px rgba(160, 140, 90, 0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.signup-submit:hover {
  background: linear-gradient(90deg, #e7d7b1 0%, #bfa76a 100%);
  transform: scale(1.03);
}
.module-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e7d7b1 0%, #bfa76a 100%);
  box-shadow: 0 2px 12px rgba(191, 167, 106, 0.12);
  color: #fff;
}
.gold-bg {
  background: linear-gradient(135deg, #bfa76a 0%, #e7d7b1 100%);
  color: #fff;
}
.learn-more {
  color: #bfa76a;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.learn-more:hover {
  color: #7c6c4b;
}
.modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(60, 50, 30, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.modal-content {
  background: #fff6e0;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18);
  padding: 40px 32px;
  max-width: 420px;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.3s;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: #bfa76a;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #7c6c4b;
}
.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
ul {
ul li {

body {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #f8f6f3 0%, #fff6e0 100%);
  color: #3a2c1a;
  margin: 0;
  padding: 0;
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: rgba(255, 246, 224, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(160, 140, 90, 0.08);
}
.nav-logo .logo-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #bfa76a;
  letter-spacing: 0.04em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #3a2c1a;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links li a:hover, .nav-signup {
  background: linear-gradient(90deg, #e7d7b1 0%, #bfa76a 100%);
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.hero-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e7d7b1 0%, #fff6e0 100%);
  opacity: 0.7;
}
.hero-glass {
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  position: absolute;
  top: 0; left: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 64px 24px 48px 24px;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #3a2c1a;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(160, 140, 90, 0.08);
}
.hero-desc {
  font-size: 1.3rem;
  margin: 0 0 32px 0;
  color: #6d5c3a;
  text-shadow: 0 1px 8px rgba(160, 140, 90, 0.06);
}
.hero-cta {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #bfa76a 0%, #e7d7b1 100%);
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  box-shadow: 0 4px 24px rgba(160, 140, 90, 0.12);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover {
  background: linear-gradient(90deg, #e7d7b1 0%, #bfa76a 100%);
  transform: scale(1.04);
}

/* Integration Section */
.integration {
  background: #fff6e0;
  border-radius: 16px;
  margin: 48px auto;
  max-width: 700px;
  padding: 40px 32px;
  box-shadow: 0 2px 16px rgba(160, 140, 90, 0.08);
}
.integration-desc {
  font-size: 1.2rem;
  color: #6d5c3a;
  margin: 0;
}

/* Modules Section */
.modules {
  margin: 56px auto 0 auto;
  max-width: 1100px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 32px;
}
.module {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(160, 140, 90, 0.08);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  position: relative;
}
.module:hover {
  box-shadow: 0 8px 32px rgba(160, 140, 90, 0.18);
  transform: translateY(-6px) scale(1.05);
}
.module h3 {
  font-size: 1.4rem;
  color: #bfa76a;
  margin: 0 0 12px 0;
}
.module p {
  font-size: 1.1rem;
  color: #3a2c1a;
  margin: 0;
}

/* Signup Section (placeholder) */
.signup-section {
  margin: 64px auto 0 auto;
  max-width: 600px;
  text-align: center;
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 1rem;
  color: #bfa76a;
  margin: 64px 0 0 0;
  padding: 32px 0 16px 0;
  background: #f8f6f3;
}
.footer-divider {
  margin: 0 8px;
  color: #d6c7a2;
}
.footer-tag {
  color: #6d5c3a;
}

/* Responsive Design */
@media (max-width: 900px) {
  .main-nav {
    padding: 16px 24px;
  }
  .hero-content {
    padding: 48px 12px 32px 12px;
  }
  .integration {
    padding: 24px 12px;
  }
  .modules {
    max-width: 100%;
  }
  .modules-grid {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .main-nav {
    flex-direction: column;
    gap: 12px;
    padding: 8px 8px;
  }
  .nav-logo .logo-text {
    font-size: 1.4rem;
  }
  .nav-links {
    gap: 12px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-cta {
    font-size: 1rem;
    padding: 12px 24px;
  }
  .integration {
    padding: 12px 4px;
  }
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.hero {
  background: linear-gradient(120deg, #f8f6f2 0%, #f3ede5 100%);
  border-bottom: 1px solid #e7e1d6;
  padding: 3.5rem 1rem 2.5rem 1rem;
  text-align: center;
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.2rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7cfa3 0%, #f3ede5 100%);
  box-shadow: 0 2px 12px rgba(180, 150, 80, 0.08);
  border: 2px solid #e7cfa3;
}
.logo-text {
  font-size: 2.1rem;
  font-weight: 700;
  color: #bfa76a;
  letter-spacing: 0.08em;
  font-family: inherit;
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #bfa76a;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 1.25rem;
  color: #7c6c4b;
  margin-bottom: 0.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: #4d463a;
  margin-bottom: 1.7rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.cta {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  background: #bfa76a;
  color: #fff;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
  border: none;
  box-shadow: 0 1px 4px rgba(191, 167, 106, 0.08);
}
.cta.secondary {
  background: #f3ede5;
  color: #bfa76a;
  border: 1px solid #e7cfa3;
}
.cta:hover {
  background: #7c6c4b;
  color: #fff;
}

main {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}
section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(191, 167, 106, 0.04);
  margin-bottom: 2.2rem;
  padding: 2.2rem 2rem;
  border: 1px solid #e7e1d6;
}
section h2 {
  margin-top: 0;
  font-size: 1.35rem;
  color: #bfa76a;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.integration-desc {
  color: #4d463a;
  font-size: 1.08rem;
  margin-top: 0.7rem;
}
.outcome-list {
  padding-left: 1.2em;
  margin: 1em 0;
}
.outcome-title {
  font-weight: 600;
  color: #7c6c4b;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.module {
  background: #f8f6f2;
  border-radius: 10px;
  border: 1px solid #e7e1d6;
  padding: 1.2rem 1rem;
  box-shadow: 0 1px 4px rgba(191, 167, 106, 0.03);
}
.module h3 {
  margin: 0 0 0.5rem 0;
  color: #bfa76a;
  font-size: 1.1rem;
  font-weight: 700;
}
.module p {
  margin: 0;
  color: #4d463a;
  font-size: 1.01rem;
}
.how-list {
  padding-left: 1.2em;
  margin: 1em 0;
}
.how-list li {
  margin-bottom: 0.6em;
  font-size: 1.05rem;
}
.trust p {
  color: #7c6c4b;
  font-size: 1.01rem;
}
.footer-inner {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: #7c6c4b;
  font-size: 1rem;
  border-top: 1px solid #e7e1d6;
  background: #f8f6f2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7em;
}
.footer-divider {
  color: #e7cfa3;
  font-size: 1.2em;
}
.footer-tag {
  color: #bfa76a;
  font-weight: 600;
}

@media (max-width: 700px) {
  .hero-title {
    font-size: 1.4rem;
  }
  .logo-circle {
    width: 60px;
    height: 60px;
  }
  .hero-inner {
    padding: 0 0.2rem;
  }
  section {
    padding: 1.2rem 0.7rem;
  }
  main {
    padding: 0 0.5rem;
  }
  .cta {
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
}
