/* ============================================================
   faq.css — ToolsMingo FAQ Page Styles
   ============================================================ */

/* ── RESET & BASE ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0d0f0e;
  color: #f1efe9;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ── HERO ── */
.hero {
  text-align: center;
  padding: 72px clamp(16px, 5vw, 48px) 48px;
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: #f6f4ee;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero p {
  font-size: 16px;
  color: #7e7c76;
  line-height: 1.7;
}


/* ── FAQ WRAP ── */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px) 80px;
}


/* ── FAQ ACCORDION ── */
.faq-item {}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  color: #f1efe9;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  flex: 1;
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  color: #4a4845;
  flex-shrink: 0;
  transition: transform .2s;
  margin-top: 1px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #c8401a;
}

.faq-a {
  display: none;
  padding: 0 0 22px 0;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-a p {
  font-size: 15px;
  color: #a4a29b;
  line-height: 1.75;
}


/* ── ASK A QUESTION ── */
.ask-section {
  background: #141614;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 32px;
  margin: 48px 0;
}

.ask-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: #f6f4ee;
  margin-bottom: 8px;
}

.ask-section p {
  font-size: 14px;
  color: #6a6865;
  margin-bottom: 24px;
  line-height: 1.6;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4a4845;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  background: #0d0f0e;
  border: 1px solid rgba(255, 255, 255, .1);
  color: #f1efe9;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  outline: none;
  transition: border-color .15s;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(200, 64, 26, .5);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: #c8401a;
  color: #fff;
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
}

.submit-btn:hover {
  background: #e04d24;
}

.submit-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.success-msg {
  display: none;
  background: rgba(134, 239, 172, .08);
  border: 1px solid rgba(134, 239, 172, .2);
  color: #86efac;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  padding: 14px;
  border-radius: 8px;
  margin-top: 14px;
}