@font-face {
  font-family: 'Century Gothic Custom';
  src: url('../fonts/century-gothic.woff2') format('woff2'),
       url('../fonts/century-gothic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

#quiz-area {
  display: none;
}

/* SCOPED RESET */
.ama-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* SECTION WRAPPER */
.ama-section {
  background: #faf9f7;
  padding: 2rem 1rem;
}

/* MAIN CARD */
.ama-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid #e8e4dc;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.ama-question,
.ama-btn-row {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* HEADER */
.ama-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e4dc;
}

.ama-title {
  font-size: 26px;
  font-weight: 600;
  color: #2c2c2a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.ama-subtitle {
  font-size: 14px;
  font-style: italic;
  color: #7a7a78;
  line-height: 1.6;
}

.ama-subtitle span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #9FE1CB;
  font-style: normal;
  letter-spacing: 0.5px;
}

/* PROGRESS */
.ama-progress-wrap {
  margin-bottom: 1.75rem;
}

.ama-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9a9a98;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.ama-progress-bar {
  height: 5px;
  background: #f0ede8;
  border-radius: 3px;
}

.ama-progress-fill {
  height: 5px;
  background: linear-gradient(90deg, #5DCAA5, #1D9E75);
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* QUESTION */
.ama-question {
  font-size: 17px;
  color: #2c2c2a;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

/* BUTTONS */
.ama-btn-row {
  display: flex;
  gap: 14px;
  margin-bottom: 2rem;
}

.ama-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid #ddd9d2;
  background: #ffffff;
  color: #2c2c2a;
  font-size: 15px;
  font-family: Georgia, serif;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ama-btn:hover {
  background: #f5f3ef;
  border-color: #c8c4bc;
}

.ama-btn.selected-yes {
  background: #E1F5EE;
  border-color: #5DCAA5;
  color: #085041;
  font-weight: 600;
}

.ama-btn.selected-no {
  background: #f5f3ef;
  border-color: #b8b4ac;
  color: #6a6a68;
}

/* NAV */
.ama-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ama-nav-btn {
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid #ddd9d2;
  background: #ffffff;
  color: #2c2c2a;
  font-size: 14px;
  font-family: Georgia, serif;
  cursor: pointer;
  transition: all 0.15s;
}

.ama-nav-btn:hover {
  background: #f5f3ef;
}

.ama-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.ama-nav-btn.primary {
  background: #1D9E75;
  border-color: #1D9E75;
  color: #ffffff;
  font-weight: 600;
}

.ama-nav-btn.primary:hover {
  background: #178a64;
}

.ama-nav-btn.primary:disabled {
  background: #a0cfc0;
  border-color: #a0cfc0;
}

.ama-counter {
  font-size: 13px;
  color: #9a9a98;
}

/* RESULT */
.ama-result {
  display: none;
}

.ama-result-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8e4dc;
}

.ama-result-intro {
  font-size: 13px;
  color: #9a9a98;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ama-result-title {
  font-size: 22px;
  font-weight: 600;
  color: #2c2c2a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ama-badge {
  display: inline-block;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ama-mood {
  font-size: 13px;
  color: #7a7a78;
  margin-top: 8px;
  font-style: italic;
}

.ama-result-desc {
  font-size: 15px;
  color: #3a3a38;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* BLEND */
.ama-blend-section {
  background: #faf9f7;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e8e4dc;
}

.ama-blend-title {
  font-size: 13px;
  color: #7a7a78;
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.ama-blend-item {
  font-size: 13px;
  color: #5a5a58;
  padding: 5px 0;
  border-bottom: 1px solid #e8e4dc;
  display: flex;
  justify-content: space-between;
}

.ama-blend-item:last-child {
  border-bottom: none;
}

/* CONSULT */
.ama-consult {
  background: #E1F5EE;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.25rem;
  border: 1px solid #9FE1CB;
}

.ama-consult-text {
  font-size: 15px;
  color: #0F6E56;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-style: italic;
}

.ama-consult-btn {
  display: inline-block;
  background: #1D9E75;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: Georgia, serif;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}

.ama-consult-btn:hover {
  background: #178a64;
}

/* DISCLAIMER */
.ama-disclaimer {
  font-size: 11px;
  color: #b0b0ae;
  margin-top: 1.5rem;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
}

/* RESTART */
.ama-restart-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 10px;
  background: transparent;
  border: 1px solid #ddd9d2;
  border-radius: 8px;
  font-size: 13px;
  color: #9a9a98;
  font-family: Georgia, serif;
  cursor: pointer;
  transition: all 0.15s;
}

.ama-restart-btn:hover {
  background: #f5f3ef;
  color: #5a5a58;
}
.home-ama-hero{
position:relative;
/* background:url('../img/hero.jpg') center/cover no-repeat; */
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding-top:50px;
}
.legal-page {
  padding: 80px 0;
}

.legal-title {
  font-size: 32px;
  font-weight: 100;
  font-family:var(--font-display);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.legal-content {
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content h2,
.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}


/* MOBILE */
@media (max-width: 480px) {
  .ama-wrap {
    padding: 1.5rem 1.25rem;
  }

  .ama-title {
    font-size: 22px;
  }

  .ama-question {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #quiz-email-form {
    flex-direction: column;
  }

  #quiz-email-form button {
    width: 100%;
  }

  .ama-btn-row {
    flex-direction: column;
  }
}
/* EMAIL GATE */
.ama-gate {
  text-align: center;
  padding: 2rem 1rem;
}

.ama-gate h3 {
  font-size: 20px;
  color: #2c2c2a;
  margin-bottom: 8px;
}

.ama-gate p {
  font-size: 14px;
  color: #7a7a78;
  margin-bottom: 20px;
}

#quiz-email-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

#quiz-email-form input {
  flex: 1;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd9d2;
  font-size: 14px;
  outline: none;
}

#quiz-email-form input:focus {
  border-color: #5DCAA5;
}

#quiz-email-form button {
  background: #1D9E75;
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

#quiz-email-form button:hover {
  background: #178a64;
  transform: translateY(-1px);
}