/* ─────────────────────────────────────────────────────────────
   Basta — pages/get-in-touch.css
   Q&A list with categories, plus the in-app feedback direction
   ───────────────────────────────────────────────────────────── */

/* ─── PAGE HERO ─────────────────────────────────────────────── */
.git-hero {
  padding: 140px 0 60px;
  background: var(--cream);
  text-align: center;
}
.git-hero-inner {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.git-headline {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.git-headline em { font-style: italic; color: var(--olive); }
.git-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--warm-grey);
  line-height: 1.45;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Q&A SECTION ──────────────────────────────────────────── */
.qa-section {
  padding: 64px 0 88px;
}
.qa-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.qa-category {
  margin-bottom: 56px;
}
.qa-category:last-child { margin-bottom: 0; }

.qa-category-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 103, 58, 0.18);
}

.qa-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(92, 107, 58, 0.08);
}
.qa-item:last-child { border-bottom: none; }

.qa-question {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.qa-answer {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--bark-light);
  max-width: 640px;
}
.qa-answer p { margin-bottom: 12px; }
.qa-answer p:last-child { margin-bottom: 0; }
.qa-answer em { font-style: italic; color: var(--olive); }
.qa-answer strong { font-weight: 500; color: var(--bark); }

/* Q&A item with screenshot - layout side-by-side on desktop */
.qa-item-with-image {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 40px;
  align-items: start;
}
.qa-item-with-image .qa-content { padding-right: 8px; }
.qa-screenshot {
  display: flex;
  justify-content: center;
}
.qa-screenshot .phone-screen-mini {
  width: 200px;
  background: #1A1208;
  border-radius: 32px;
  padding: 6px;
  box-shadow:
    0 20px 40px -12px rgba(42, 35, 24, 0.18),
    0 8px 20px -8px rgba(42, 35, 24, 0.12);
}
.qa-screenshot .phone-screen-mini img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
}

/* ─── FEEDBACK SECTION (Still have a question?) ─────────────── */
.feedback-section {
  background: var(--cream-dark);
  padding: 96px 0;
}
.feedback-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.feedback-content .eyebrow {
  margin-bottom: 18px;
}
.feedback-headline {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}
.feedback-headline em { font-style: italic; color: var(--olive); }
.feedback-body {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--bark-light);
  margin-bottom: 18px;
}
.feedback-body strong {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--bark);
  font-style: italic;
}
.feedback-screenshot {
  display: flex;
  justify-content: center;
}
.feedback-screenshot .phone-screen {
  width: 280px;
  background: #1A1208;
  border-radius: 40px;
  padding: 7px;
  box-shadow:
    0 30px 60px -20px rgba(42, 35, 24, 0.25),
    0 14px 28px -12px rgba(42, 35, 24, 0.18);
}
.feedback-screenshot .phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 33px;
}

/* ─── EVERYTHING ELSE (closer) ──────────────────────────────── */
.closer-section {
  padding: 72px 0 96px;
  background: var(--cream);
  text-align: center;
}
.closer-inner {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.closer-text {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--bark-light);
}
.closer-text a {
  color: var(--olive);
  border-bottom: 1px solid rgba(92, 107, 58, 0.3);
  font-weight: 500;
  transition: all var(--transition);
}
.closer-text a:hover {
  color: var(--olive-light);
  border-bottom-color: var(--olive);
}

/* ─── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .git-hero { padding: 110px 0 40px; }
  .qa-section { padding: 40px 0 64px; }
  .qa-category { margin-bottom: 40px; }

  .qa-item-with-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .qa-screenshot { justify-content: flex-start; }

  .feedback-section { padding: 64px 0; }
  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feedback-screenshot { order: -1; }
  .feedback-screenshot .phone-screen { width: 240px; }

  .closer-section { padding: 48px 0 72px; }
}
