/* ===== FAQ + Case studies + Contact page ===== */

/* Hero */
.faq-head {
  background: var(--green-ink);
  color: var(--paper);
  padding: 40px 0 64px;
}
.faq-head .breadcrumbs { margin-bottom: 36px; }
.faq-head .breadcrumbs a,
.faq-head .breadcrumbs .sep { color: rgba(247,244,236,0.55); }
.faq-head .breadcrumbs .current { color: var(--gold); }
.faq-head .kicker { color: var(--gold); }
.faq-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.faq-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(38px, 5.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--paper);
  margin: 12px 0 18px;
}
.faq-hero h1 .accent { color: var(--gold); }
.faq-hero-text p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(247,244,236,0.82);
  font-weight: 500;
  max-width: 560px;
  margin: 0 0 26px;
}
.faq-jump { display: flex; flex-wrap: wrap; gap: 10px; }
.faq-jump a {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(247,244,236,0.22);
  border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 700;
  color: var(--paper);
  transition: background 0.16s ease, border-color 0.16s ease;
}
.faq-jump a:hover { background: rgba(201,169,97,0.18); border-color: var(--gold); }
.faq-hero-stats {
  display: flex; flex-direction: column; gap: 14px;
}
.fhs-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--r-md);
}
.fhs-item b {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.fhs-item span { font-size: 13.5px; line-height: 1.4; color: rgba(247,244,236,0.78); font-weight: 500; }

/* FAQ body */
.faq-main { padding: 72px 0 24px; }
.faq-block { margin-bottom: 56px; scroll-margin-top: 90px; }
.faq-block-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.faq-block-ic {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.faq-block-ic svg { width: 26px; height: 26px; }
.faq-block-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.faq-block-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-ink);
  margin: 0;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.faq-item[open] { border-color: var(--green-light); box-shadow: 0 16px 36px -26px rgba(14,59,39,0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--green-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2.4px;
  background: var(--green-deep);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 500;
  margin: 0;
  max-width: 760px;
}
.faq-answer a { color: var(--green-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* All-cases link */
.cs-allcases { display: flex; justify-content: center; margin-top: 40px; }
.cs-allcases a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px;
  border: 1.5px solid var(--green-deep);
  border-radius: var(--r-pill);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--green-ink);
  transition: background 0.18s ease, color 0.18s ease, gap 0.18s ease;
}
.cs-allcases a:hover { background: var(--green-ink); color: var(--paper); gap: 13px; }
.cs-allcases svg { width: 16px; height: 16px; }

/* Contact block */
.faq-contact { padding: 24px 0 96px; }
.faq-contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.faq-contact-intro { position: sticky; top: 96px; }
.faq-contact-intro h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--green-ink);
  margin: 10px 0 16px;
}
.faq-contact-intro h2 .accent { color: var(--gold-deep); }
.faq-contact-intro > p {
  font-size: 16.5px; line-height: 1.55;
  color: var(--ink-2); font-weight: 500;
  margin: 0 0 28px; max-width: 420px;
}
.faq-contact-channels { display: flex; flex-direction: column; gap: 12px; }
.fcc {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.16s ease, transform 0.16s ease;
}
.fcc:hover { border-color: var(--green-light); transform: translateX(3px); }
.fcc-ic {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.fcc-ic svg { width: 22px; height: 22px; }
.fcc > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.fcc b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 800; color: var(--green-ink); letter-spacing: -0.01em; }
.fcc span span,
.fcc > span:last-child span:last-child { font-size: 13px; color: var(--ink-3); font-weight: 600; }

@media (max-width: 980px) {
  .faq-hero { grid-template-columns: 1fr; gap: 36px; }
  .faq-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-contact-intro { position: static; }
}
@media (max-width: 560px) {
  .fhs-item { grid-template-columns: 1fr; gap: 6px; padding: 16px 18px; }
  .faq-block-head { gap: 14px; }
  .faq-item summary { font-size: 15.5px; padding: 18px 18px; }
  .faq-answer { padding: 0 18px 20px; }
}
