* {
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.hero-gradient {
  background: linear-gradient(160deg, #E8572A 0%, #F08060 60%, #F5A080 100%);
}

.hero-gradient-soft {
  background: linear-gradient(160deg, #F08060 0%, #F5A080 50%, #FAD0C0 100%);
}

.navbar-custom {
  background: #fff;
  border-bottom: 1px solid #F0ECE8;
  position: sticky;
  top: 0;
  z-index: 50;
}

.btn-brand {
  background: #E8572A;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-brand:hover {
  background: #CC4A22;
}

.btn-brand-secondary {
  background: #F0ECE8;
  color: #E8572A;
  border: none;
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-brand-secondary:hover {
  background: #E5E0DC;
}

.btn-white {
  background: #fff;
  color: #E8572A;
  border: none;
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  opacity: 0.9;
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.card-base {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.card-tinted {
  background: #F5F3F0;
  border-radius: 14px;
  padding: 16px;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E8572A;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-mockup {
  background: #1A1A1A;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}

.phone-screen {
  background: #FAF8F6;
  border-radius: 30px;
  overflow: hidden;
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 8px;
}

.faq-item {
  border-bottom: 1px solid #F0ECE8;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
  color: #1A1A1A;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F0ECE8;
  color: #E8572A;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: #6B6B6B;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}
.faq-item.open .faq-icon {
  background: #E8572A;
  color: #fff;
}

.stat-divider {
  width: 1px;
  background: #E5E0DC;
  height: 60px;
}

.stars {
  color: #E8572A;
  font-size: 18px;
  letter-spacing: 1px;
}

.result-badge {
  display: inline-block;
  background: #ECFDF5;
  color: #065F46;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky {
    display: flex;
  }
  .desktop-nav-links {
    display: none;
  }
}
@media (min-width: 769px) {
  .desktop-nav-links {
    display: flex;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E8572A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

section {
  padding: 72px 0;
}

@media (max-width: 768px) {
  section {
    padding: 52px 0;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
