/* ==========================================================================
   FAQ — same dark green as the footer, with the question rows styled
   as translucent, blurred glass "bubbles" rather than solid cards.
   Single column on mobile, two columns on desktop.
   ========================================================================== */

.faq {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #14311f;
  color: rgba(238, 242, 233, 0.82);
  padding: clamp(3.5rem, 10vw, 6rem) clamp(1.1rem, 6vw, 3rem);
  /* strong inset shadow hugging the top and bottom edges, so the
     section reads as sitting slightly recessed between its neighbors
     instead of a flat color block butting straight up against them */
  box-shadow:
    inset 0 45px 40px -40px rgba(0, 0, 0, 0.65),
    inset 0 -45px 40px -40px rgba(0, 0, 0, 0.65);
}

.faq__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.faq__blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 214, 174, 0.35) 0%, rgba(143, 214, 174, 0) 70%);
  filter: blur(6px);
}

.faq__blob--1 {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -80px;
}

.faq__blob--2 {
  width: 320px;
  height: 320px;
  bottom: -140px;
  right: -100px;
}

.faq__blob--3 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: 4%;
  opacity: 0.7;
}

.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
}

.faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  max-width: 32rem;
  margin: 0 auto clamp(2rem, 6vw, 2.75rem);
}

.faq__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 242, 233, 0.35);
  border-radius: 999px;
  padding: 0.35em 1.2em;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fd6ae;
}

.faq__title {
  margin: 0;
  font-family: var(--hero-font);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f3f6ef;
}

.faq__title span {
  color: #8fd6ae;
}

.faq__lead {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(238, 242, 233, 0.6);
}

/* -- list / bubbles -- */

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq__item {
  border-radius: 18px;
  /* the "bubble" look: mostly-transparent fill, blurred backdrop,
     a soft light rim — glass, not a flat card */
  background: rgba(238, 242, 233, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(238, 242, 233, 0.12);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq__item:hover {
  background: rgba(238, 242, 233, 0.1);
  border-color: rgba(238, 242, 233, 0.22);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.4rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--hero-font);
  font-size: 0.98rem;
  font-weight: 500;
  color: #f3f6ef;
}

.faq__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(238, 242, 233, 0.35);
  color: #8fd6ae;
  font-size: 0.7rem;
  transition: transform 0.3s var(--ease-cinematic, ease), background 0.25s ease, border-color 0.25s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(135deg);
  background: rgba(143, 214, 174, 0.16);
  border-color: rgba(143, 214, 174, 0.5);
}

.faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s var(--ease-cinematic, cubic-bezier(0.16, 1, 0.3, 1));
}

.faq__answer p {
  margin: 0;
  padding: 0 1.4rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(238, 242, 233, 0.65);
}

/* -- bottom contact line -- */

.faq__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  margin-top: clamp(2.25rem, 6vw, 3rem);
}

.faq__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(143, 214, 174, 0.12);
  color: #8fd6ae;
  font-size: 1.1rem;
}

.faq__contact p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(238, 242, 233, 0.6);
}

.faq__contact a {
  color: #8fd6ae;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq__contact a:hover {
  color: #f3f6ef;
}

@media (prefers-reduced-motion: reduce) {
  .faq__item,
  .faq__icon,
  .faq__answer {
    transition: none;
  }
}

@media (min-width: 768px) {
  .faq__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
  }
}

@media (min-width: 1440px) {
  .faq__inner {
    max-width: 68rem;
  }
}
