/* ============================================
   FAQ PAGE — Sub-page Styles
   ============================================ */

/* --- Inner page header overrides --- */
.header--inner {
  padding: 32px 80px;
}

.header--inner .header__glass-bg {
  opacity: 1;
}

.header--inner .header__logo--white {
  opacity: 0;
}

.header--inner .header__logo--color {
  opacity: 1;
}

.header--inner .header__hamburger {
  opacity: 1;
  pointer-events: auto;
}

/* --- Page Hero: Image banner --- */
.page-hero-image {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.page-hero-image__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
}

.page-hero-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.page-hero-image__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 80px;
}

/* --- FAQ Banner (below hero image) --- */
.faq-banner {
  background: #edf1fa;
  padding: 56px 48px 64px;
}

.faq-banner__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-banner__label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0263e0;
  margin-bottom: 16px;
}

.faq-banner__title {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  color: #1a1a2e;
  line-height: 1.2;
}

.faq-banner__subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.55);
  line-height: 1.7;
  margin-top: 16px;
}

/* --- FAQ Page Header (title + subtitle) --- */
.faq__header {
  margin-bottom: 80px;
  padding-top: 20px;
  column-span: all;
}

.faq__page-title {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 16px;
}

.faq__page-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.55);
  line-height: 1.7;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 48px 120px;
  background: #fff;
}

.faq__inner {
  max-width: 1400px;
  margin: 0 auto;
  columns: 2;
  column-gap: 80px;
}

/* --- FAQ Groups --- */
.faq__group {
  margin-bottom: 80px;
  break-inside: avoid;
  background: linear-gradient(180deg, #edf1fa 0%, rgba(237, 241, 250, 0) 100%);
  border: none;
  border-radius: 24px;
  padding: 48px 40px;
}

.faq__group:last-child {
  margin-bottom: 0;
}

.faq__group-title {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 12px;
}

.faq__group-desc {
  font-family: 'Season Mix', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: rgba(26, 26, 46, 0.45);
  line-height: 1.5;
  margin-bottom: 40px;
}

/* --- FAQ List --- */
.faq__list {
  display: flex;
  flex-direction: column;
}

/* --- FAQ Item (details/summary) --- */
.faq__item {
  border-top: none;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item summary {
  list-style: none;
}

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

.faq__item summary::marker {
  display: none;
  content: '';
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.faq__question:hover,
.faq__question:focus,
.faq__question:active {
  background: transparent;
  outline: none;
  box-shadow: none;
}

.faq__question-text {
  font-family: 'Season Mix', serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.4;
}

/* Icon circle */
.faq__icon-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.faq__item[open] .faq__icon-wrap {
  background: rgba(26, 26, 46, 0.08);
}

.faq__item[open] .faq__icon {
  font-size: 0;
}

/* The open state zeroes the icon font-size, which collapses the glyph's inline
   box and knocks the "remove" pseudo-element off centre. Centring happens on
   .faq__icon itself so the pseudo-element is laid out as a flex item instead. */
.faq__item[open] .faq__icon::after {
  content: 'remove';
  font-family: 'Material Symbols Outlined';
  font-size: 20px;
  line-height: 1;
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  line-height: 1;
  color: rgba(26, 26, 46, 0.6);
  font-variation-settings: 'wght' 400;
  transition: transform 0.3s ease;
}

/* Answer */
.faq__answer {
  padding: 0 0 28px;
}

.faq__answer p {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.8;
}

/* --- FAQ CTA Section --- */
.faq-cta-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, #fff 0%, #eef2fb 30%, #e4ecf8 60%, #eef2fb 85%, #fff 100%);
}

.faq-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta__title {
  font-family: 'Season Mix', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 16px;
}

.faq-cta__text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.55);
  line-height: 1.7;
  margin-bottom: 40px;
}

.faq-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-cta__phone .material-symbols-outlined {
  font-size: 22px;
  color: #0263e0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .header--inner {
    padding: 16px 24px;
  }

  .page-hero-image {
    height: 50vh;
    min-height: 320px;
    margin-top: 0;
  }

  .page-hero-image__content {
    padding: 32px 24px;
  }

  .faq-banner {
    padding: 40px 24px;
  }

  .faq__inner {
    columns: 1;
  }

  .faq__header {
    margin-bottom: 56px;
  }

  .faq__page-title {
    font-size: clamp(36px, 9vw, 52px);
  }

  .faq__page-subtitle {
    font-size: 16px;
  }

  .faq-section {
    padding: 48px 24px 80px;
  }

  .faq__group {
    margin-bottom: 60px;
    padding: 32px 24px;
  }

  .faq__question-text {
    font-size: 20px;
  }

  .faq__answer p {
    font-size: 15px;
  }

  .faq__icon-wrap {
    width: 32px;
    height: 32px;
  }

  .faq__icon {
    font-size: 18px;
  }

  .faq__item[open] .faq__icon::after {
    font-size: 18px;
  }

  .faq-cta-section {
    padding: 72px 24px;
  }

  .faq-cta__buttons .btn-cta {
    width: 100%;
  }
}
