/* GrowIQ FAQ Accordion (2-Column) — Roboto + brand colors */
.gwiq-faq-wrap,
.gwiq-faq-wrap * {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif !important;
}

.gwiq-faq-wrap {
  --gwiq-headline: #44DFE2;
  --gwiq-text: #E5F7F8;
  --gwiq-border: rgba(229, 247, 248, 0.22);
  --gwiq-bg: rgba(229, 247, 248, 0.04);
  --gwiq-bg-hover: rgba(229, 247, 248, 0.07);
  --gwiq-shadow: 0 10px 28px rgba(0,0,0,0.18);

  width: 100%;
  color: var(--gwiq-text);
}

.gwiq-faq-header {
  margin-bottom: 18px;
}

.gwiq-faq-headline {
  color: var(--gwiq-headline);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px 0;
  font-size: clamp(26px, 3vw, 40px);
}

.gwiq-faq-subheadline {
  color: var(--gwiq-text);
  opacity: 0.92;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 74ch;
}

.gwiq-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  align-items: start;
}

.gwiq-faq-col {
  display: grid;
  gap: 12px;
}

.gwiq-faq-item {
  border: 1px solid var(--gwiq-border);
  background: var(--gwiq-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
}

.gwiq-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;

  padding: 16px 16px;
  cursor: pointer;

  color: var(--gwiq-text);
  background: transparent;
  border: 0;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
}

.gwiq-faq-q:hover {
  background: var(--gwiq-bg-hover);
}

.gwiq-faq-q:focus-visible {
  box-shadow: 0 0 0 3px rgba(68, 223, 226, 0.35);
}

.gwiq-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--gwiq-text);
  opacity: 0.9;
  transition: transform 180ms ease;
}

.gwiq-faq-item.is-open .gwiq-faq-icon {
  transform: rotate(180deg);
}

.gwiq-faq-a {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.gwiq-faq-a-inner {
  padding: 0 16px 16px 16px;
  color: var(--gwiq-text);
  opacity: 0.92;
  font-size: 15px;
  line-height: 1.65;
}

.gwiq-faq-a-inner p {
  margin: 0 0 10px 0;
}

.gwiq-faq-a-inner p:last-child {
  margin-bottom: 0;
}

/* Mobile: single column */
@media (max-width: 860px) {
  .gwiq-faq-grid {
    grid-template-columns: 1fr;
  }
}
