/* ═══════════════════════════════════════════════
   WebTurtle — Shared Base (Minimal)
   Only reset, utilities, and structural hooks.
   Each industry template owns its own design DNA.
   ═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ── */
.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION (shared across all templates)
   Structure stays the same; colors set by each template.
   ═══════════════════════════════════════════════ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text, #1a1a1a);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary, #333);
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted, #666);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ═══════════════════════════════════════════════
   SCREEN READER ONLY
   ═══════════════════════════════════════════════ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
