/* =====================================================
   AQUASOFT — FAQ Page
   ===================================================== */

/* ── HERO ── */
.faq-hero {
  background: linear-gradient(135deg, var(--deep) 0%, #0a5e57 100%);
  padding: 56px 24px 52px;
  text-align: center; color: #fff;
}
.faq-hero h1 { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 900; margin: 0 0 12px; letter-spacing: -.02em; color: #fff !important; }
.faq-hero p  { font-size: 1rem; color: rgba(255,255,255,.72) !important; margin: 0 auto; max-width: 540px; }

/* ── LAYOUT ── */
.faq-wrap { max-width: 960px; margin: 0 auto; padding: 48px 20px 64px; }

/* ── SECTION HEADER ── */
.faq-section-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.25rem; font-weight: 800; color: var(--deep);
  margin: 0 0 20px;
}
.faq-section-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.faq-section-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── VIDEO TABLE ── */
.faq-table-wrap { overflow-x: auto; margin-bottom: 48px; border-radius: var(--r); box-shadow: 0 4px 18px rgba(8,164,147,.10); }
.faq-table {
  width: 100%; border-collapse: collapse;
  background: #fff; font-size: .9rem;
}
.faq-table thead th {
  background: var(--light); color: var(--deep);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 12px 16px; text-align: left;
  border-bottom: 2px solid var(--border);
}
.faq-table tbody td {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  color: #374151; line-height: 1.55; vertical-align: middle;
}
.faq-table tbody tr:last-child td { border-bottom: none; }
.faq-table tbody tr:hover td { background: #fafffe; }
.faq-table .sec-row td {
  background: var(--deep); color: #fff;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 9px 16px;
}
.faq-video-links { display: flex; flex-direction: column; gap: 4px; }
.faq-video-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-size: .85rem; font-weight: 600; text-decoration: none;
  transition: color .15s;
}
.faq-video-link:hover { color: var(--teal-d); text-decoration: none; }
.faq-video-link svg { flex-shrink: 0; }

/* ── ACCORDION ── */
.faq-group { margin-bottom: 48px; }
.faq-group-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin: 0 0 10px; padding: 0 4px;
}
.faq-accordion { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 2px 8px rgba(8,164,147,.05);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 17px 20px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit; transition: background .15s;
}
.faq-q:hover { background: var(--light); }
.faq-q-text { font-size: .95rem; font-weight: 700; color: var(--deep); line-height: 1.4; }
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .15s, transform .25s;
}
.faq-item.open .faq-q-icon { background: var(--teal); border-color: var(--teal); transform: rotate(45deg); }
.faq-item.open .faq-q-icon svg { stroke: #fff; }
.faq-q-icon svg { stroke: var(--muted); transition: stroke .15s; }
.faq-a { display: none; padding: 0 20px 20px; }
.faq-item.open .faq-a { display: block; }
.faq-causes { display: flex; flex-direction: column; gap: 10px; }
.faq-cause {
  background: var(--light); border-radius: 8px;
  padding: 12px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
}
@media (max-width: 600px) { .faq-cause { grid-template-columns: 1fr; } }
.faq-cause-why { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.faq-cause-fix { font-size: .85rem; color: #1f2937; line-height: 1.5; }
.faq-cause-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 3px; }
.faq-cause-fix a { color: var(--teal); text-decoration: underline; }
.faq-cause-fix a:hover { text-decoration: none; }

/* ── CTA BAND ── */
.faq-cta {
  background: linear-gradient(135deg, var(--deep) 0%, #0a5e57 100%);
  border-radius: 20px; padding: 40px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; margin-top: 12px;
  box-shadow: 0 8px 32px rgba(8,164,147,.2);
}
.faq-cta-text h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0 0 6px; }
.faq-cta-text p  { font-size: .9rem; color: rgba(255,255,255,.7); margin: 0; }
.faq-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #FF7A45, #FF6B35);
  color: #fff; font-size: .97rem; font-weight: 700; padding: 14px 28px;
  border-radius: 11px; text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 22px rgba(255,107,53,.4); transition: opacity .15s, transform .1s;
}
.faq-cta-btn:hover { opacity: .9; transform: translateY(-1px); color: #fff; text-decoration: none; }
