.todomow-faq-section {
  margin-top: 34px;
  padding: 6px 0 22px;
}

.todomow-faq-header {
  max-width: 930px;
  margin-bottom: 24px;
}

.todomow-faq-header h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.todomow-faq-header p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.todomow-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.todomow-faq-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.todomow-faq-category {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(34, 197, 94, 0.23);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.todomow-faq-category h3 {
  margin: 0 0 14px;
  color: #f7fafc;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.todomow-faq-list {
  display: grid;
  gap: 9px;
}

.todomow-faq-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(7, 10, 19, 0.54);
}

.todomow-faq-question {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.todomow-faq-question:hover {
  background: rgba(34, 197, 94, 0.07);
}

.todomow-faq-question:focus-visible {
  outline: 3px solid #86efac;
  outline-offset: -3px;
}

.todomow-faq-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  color: #d8fbe3;
  font-size: 1.12rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.todomow-faq-question[aria-expanded="true"] .todomow-faq-icon {
  transform: rotate(45deg);
}

.todomow-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 180ms ease, opacity 150ms ease;
}

.todomow-faq-answer.is-open {
  max-height: 900px;
  opacity: 1;
}

.todomow-faq-answer-inner {
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.todomow-faq-answer-inner p {
  margin: 0;
}

.todomow-faq-answer-inner a {
  color: #86efac;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.todomow-faq-answer-inner a:hover,
.todomow-faq-answer-inner a:focus-visible {
  color: #dcfce7;
}

.todomow-faq-cta {
  margin-top: 24px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(56, 189, 248, 0.06));
  text-align: center;
  box-shadow: var(--shadow);
}

.todomow-faq-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: -0.04em;
}

.todomow-faq-cta p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
}

.todomow-faq-cta .btn {
  margin-top: 22px;
}

@media (max-width: 820px) {
  .todomow-faq-grid {
    display: flex;
    flex-direction: column;
  }

  .todomow-faq-column {
    display: contents;
  }

  .todomow-faq-category {
    order: var(--faq-order);
  }
}

@media (max-width: 480px) {
  .todomow-faq-section {
    margin-top: 26px;
  }

  .todomow-faq-category {
    padding: 14px;
    border-radius: 15px;
  }

  .todomow-faq-question {
    padding: 12px;
    font-size: 0.94rem;
  }

  .todomow-faq-answer-inner {
    padding: 0 12px 13px;
  }

  .todomow-faq-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .todomow-faq-icon,
  .todomow-faq-answer {
    transition: none;
  }
}
