/* =================================================
   FAQ PAGE - UNIQUE STYLES
   ================================================= */

/* ============================================
   SECTION: Content Sections Spacing
   ============================================ */
.content-section {
  padding: 4rem 0;
}

.content-section:first-of-type {
  padding-top: 2rem;
}

.content-section+.content-section {
  padding-top: 4rem;
}

.section--alt-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
  position: relative;
}

.section--alt-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(94, 114, 228, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(94, 114, 228, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ============================================
   SECTION: Hero
   ============================================ */
.faq-hero {
  padding: 4rem 0 3rem;
}

.faq-hero__content {
  max-width: 780px;
}

.faq-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.faq-hero__title .highlight {
  color: var(--color-blue);
}

.faq-hero__description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 680px;
}

.faq-hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.faq-hero__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.faq-hero__stat-icon {
  color: var(--color-blue);
  font-weight: 700;
}

/* ============================================
   SECTION: Intro (text + image)
   ============================================ */
.faq-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.faq-intro__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-intro__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.faq-intro__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-intro__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .faq-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   SECTION: FAQ Content Block
   ============================================ */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-block--reverse {
  direction: rtl;
}

.faq-block--reverse>* {
  direction: ltr;
}

.faq-block__text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.faq-block__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.faq-block__text p:last-child {
  margin-bottom: 0;
}

.faq-block__text ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.faq-block__text ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.faq-block__text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 600;
}

.faq-block__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-block__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .faq-block {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .faq-block--reverse {
    direction: ltr;
  }
}

/* ============================================
   SECTION: Full-width FAQ text sections
   ============================================ */
.faq-section__heading {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.3;
  padding-left: 1rem;
  border-left: 3px solid var(--color-blue);
}

.faq-section__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  max-width: 900px;
}

.faq-section__text p:first-child {
  font-size: 1.05rem;
  color: var(--color-text);
  opacity: 0.85;
  padding: 1rem 1.25rem;
  background: rgba(94, 114, 228, 0.06);
  border-radius: 8px;
  border-left: 2px solid rgba(94, 114, 228, 0.4);
  max-width: 900px;
  margin-bottom: 1.25rem;
}

.faq-section__text p:last-child {
  margin-bottom: 0;
}

.faq-section__text ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  max-width: 900px;
}

.faq-section__text ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  padding: 0.6rem 0.75rem 0.6rem 2rem;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-section__text ul li:hover {
  background: rgba(94, 114, 228, 0.06);
  border-color: rgba(94, 114, 228, 0.2);
}

.faq-section__text ul li::before {
  content: '→';
  position: absolute;
  left: 0.75rem;
  top: 0.6rem;
  color: var(--color-blue);
  font-weight: 600;
}

@media (max-width: 640px) {
  .faq-section__text ul {
    grid-template-columns: 1fr;
  }

  .faq-section__heading {
    padding-left: 0.75rem;
  }
}

/* ============================================
   SECTION: Reviews
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(94, 114, 228, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card__stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  font-style: italic;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  opacity: 0.6;
}

.reviews-section__title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.reviews-section__subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

/* ============================================
   SECTION: Results / Offer Block
   ============================================ */
.results-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.results-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(94, 114, 228, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(94, 114, 228, 0.12);
}

.results-stat__value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 0.35rem;
}

.results-stat__label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.offer-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.1) 0%, rgba(94, 114, 228, 0.03) 100%);
  border: 1px solid rgba(94, 114, 228, 0.2);
  border-radius: 16px;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(94, 114, 228, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.offer-banner__content {
  position: relative;
  z-index: 1;
}

.offer-banner__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.offer-banner__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  max-width: 560px;
}

.offer-banner__image {
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.offer-banner__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .offer-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .offer-banner__image {
    display: none;
  }
}

/* ============================================
   SECTION: FAQ Accordion
   ============================================ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-dark-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(94, 114, 228, 0.1);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-blue);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  padding: 1rem 0;
}

/* ============================================
   SECTION: Lead Form
   ============================================ */
.lead-form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.05), rgba(94, 114, 228, 0.02));
  position: relative;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(94, 114, 228, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.lead-form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.lead-form-wrapper h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.lead-form-wrapper .section-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-blue);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-select option {
  background: var(--color-dark-secondary);
  color: var(--color-text);
}

.btn--full {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  opacity: 0.6;
  text-align: center;
  line-height: 1.5;
  margin-top: 0.5rem;
}