/* ===============================
   FAQ PAGE
   /faq
   =============================== */

.faq-page {
  background: var(--mint);
}

/* HERO */

.faq-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(90, 157, 67, 0.18), transparent 34%),
    radial-gradient(circle at 12% 12%, rgba(77, 140, 216, 0.11), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--mint) 100%);
  padding: 38px 0 72px;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 54px;
  align-items: center;
}

.faq-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--deep-navy);
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.faq-hero-copy h1 span,
.faq-section-head h2 span {
  color: var(--green);
}

.faq-hero-copy p {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--deep-navy);
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  line-height: 1.32;
  font-weight: 850;
}

.faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-hero-panel {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(143, 207, 95, 0.18), transparent 30%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
  box-shadow: 0 28px 70px rgba(3, 20, 36, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-hero-panel > span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(143, 207, 95, 0.12);
  border: 1px solid rgba(143, 207, 95, 0.28);
  color: var(--lime);
  font-size: 2.6rem;
  font-weight: 900;
}

.faq-hero-panel h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.faq-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

/* NAV STRIP */

.faq-nav-strip {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-top: 1px solid rgba(16, 35, 58, 0.08);
  border-bottom: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 10px 26px rgba(3, 20, 36, 0.06);
}

.faq-nav-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
}

.faq-nav-grid a {
  min-height: 74px;
  padding: 14px 10px;
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.9rem;
  border-right: 1px solid rgba(16, 35, 58, 0.08);
}

.faq-nav-grid a:last-child {
  border-right: 0;
}

.faq-nav-grid a:hover {
  color: var(--green);
  background: var(--mint);
}

.faq-nav-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(59, 127, 50, 0.1);
}

/* SECTIONS */

.faq-section {
  padding: 84px 0;
  scroll-margin-top: 96px;
}

.faq-white {
  background: #fff;
}

.faq-mint {
  background: var(--mint);
}

.faq-dark {
  background:
    radial-gradient(circle at 78% 26%, rgba(90, 157, 67, 0.18), transparent 34%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
}

.faq-olive {
  background: var(--olive);
}

.faq-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.faq-section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.faq-dark .eyebrow {
  color: var(--lime);
}

.faq-dark .eyebrow.cream {
  color: #f0e7b4;
}

/* FAQ LIST */

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 14px 34px rgba(3, 20, 36, 0.06);
  overflow: hidden;
}

.faq-mint .faq-list details {
  background: #fff;
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 58px 22px 24px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details[open] summary {
  border-bottom: 1px solid rgba(16, 35, 58, 0.08);
}

.faq-list p {
  margin: 0;
  padding: 20px 24px 24px;
  color: rgba(16, 35, 58, 0.76);
  font-size: 1.03rem;
}

/* LIFE MODEL */

.faq-life-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.faq-life-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.faq-life-grid p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.faq-life-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-life-card div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-life-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 1.08rem;
}

.faq-life-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

/* START OPTIONS */

.faq-start-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.faq-start-grid h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.faq-start-grid p {
  margin: 0;
  max-width: 660px;
  color: rgba(16, 35, 58, 0.78);
  font-size: 1.1rem;
}

.faq-start-options {
  display: grid;
  gap: 12px;
}

.faq-start-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 14px 30px rgba(3, 20, 36, 0.08);
}

.faq-start-options strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.faq-start-options span {
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

/* RESPONSIVE */

@media (max-width: 1020px) {
  .faq-hero-grid,
  .faq-life-grid,
  .faq-start-grid {
    grid-template-columns: 1fr;
  }

  .faq-hero-copy {
    text-align: center;
  }

  .faq-hero-copy .rrp-hero-logo img {
    margin: 0 auto;
  }

  .faq-hero-actions {
    justify-content: center;
  }

  .faq-hero-panel {
    max-width: 680px;
    margin: 0 auto;
  }

  .faq-nav-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-nav-grid a:nth-child(4) {
    border-right: 0;
  }

  .faq-nav-grid a:nth-child(1),
  .faq-nav-grid a:nth-child(2),
  .faq-nav-grid a:nth-child(3),
  .faq-nav-grid a:nth-child(4) {
    border-bottom: 1px solid rgba(16, 35, 58, 0.08);
  }
}

@media (max-width: 720px) {
  .faq-hero {
    padding: 28px 0 54px;
  }

  .faq-hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
  }

  .faq-hero-copy p {
    font-size: 1.08rem;
  }

  .faq-hero-actions {
    flex-direction: column;
  }

  .faq-hero-actions .btn {
    width: 100%;
  }

  .faq-hero-panel {
    padding: 24px;
  }

  .faq-nav-strip {
    position: relative;
    top: auto;
  }

  .faq-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-nav-grid a {
    min-height: 68px;
    font-size: 0.86rem;
  }

  .faq-nav-grid a:nth-child(even) {
    border-right: 0;
  }

  .faq-nav-grid a:nth-child(5),
  .faq-nav-grid a:nth-child(6) {
    border-bottom: 1px solid rgba(16, 35, 58, 0.08);
  }

  .faq-section {
    padding: 60px 0;
    scroll-margin-top: 20px;
  }

  .faq-list summary {
    padding: 20px 54px 20px 20px;
    font-size: 1rem;
  }

  .faq-list p {
    padding: 18px 20px 22px;
  }

  .faq-life-card,
  .faq-start-options a {
    padding: 20px;
  }

  .faq-start-options a {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
