:root {
  --accent: #E6A57E;
  --accent-hover: #CF9270;
  --dark: #1f1f28;
  --text-light: #F2ECE4;
  --text-medium: rgba(242,236,228,0.85);
  --muted: #6e6e80;
  --bg-light: #f9f9fb;
  --faq-bg: #ffffff;
  --faq-border: #e5e7eb;
  --faq-radius: 10px;
  --faq-shadow: 0 30px 90px -15px rgba(31,31,40,0.08);
  font-family: 'Rubik', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === FAQS HEADER === */
.faqs-banner {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #1f1f28 0%, #2f2f42 100%);
  color: #fff;
  overflow: visible;
  border-radius: 0;
  position: relative;
  margin-bottom: 0;
}

.faqs-banner .banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px; 
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.faqs-banner .accent-bar {
  flex: 0 0 auto;
  width: 8px;
  height: 48px;
  border-radius: 8px;
  background: var(--accent, #E6A57E);
  margin-top: 6px;
  opacity: .95;
}

.faqs-banner .banner-text {
  flex: 1;
  min-width: 0;
}

.faqs-banner .banner-text h1 {
  font-size: clamp(1.6rem, 5.2vw, 2.2rem);
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.faqs-banner .banner-text .lead {
  margin: 0;
  font-size: clamp(0.92rem, 3.2vw, 1rem);
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}

/* RESPONSIVE FAQ HERO */
@media (max-width: 1024px) {
  .faqs-banner .banner-inner {
    flex-direction: column;
    gap: 18px;
  }
  .faqs-banner .accent-bar {
    height: 40px;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .faqs-banner {
    padding: 60px 8px 28px;
  }
  .faqs-banner .banner-text h1 {
    font-size: 1.35rem;
  }
  .faqs-banner .banner-text .lead {
    font-size: 0.83rem;
  }
}

/* ===== FAQ SECTION ===== */
.faqs-section {
  padding: 60px 20px 100px;
  background: var(--bg-light);
  color: var(--dark);
}
.faqs-section .container {
  max-width: 1000px;
  margin: 0 auto;
}
.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--dark);
}
.section-subtitle {
  font-size: 0.95rem;
  margin: 0 0 28px;
  color: var(--muted);
}

.faqs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--faq-bg);
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  box-shadow: var(--faq-shadow);
  overflow: hidden;
  position: relative;
  transition: box-shadow .3s;
}
.faq-item:hover {
  box-shadow: 0 25px 60px -10px rgba(31,31,40,0.12);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 500;
  gap: 12px;
  text-align: left;
  transition: background var(--transition);
}
.faq-question .q-label {
  font-weight: 700;
  margin-right: 8px;
  color: var(--accent);
}
.faq-question .toggle-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: fadeIn .35s ease-in-out;
}
.faq-answer p {
  margin: 0;
}

/* expanded states */
.faq-question[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}
.faq-question:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section-title {
    font-size: 1.75rem;
  }
  .faq-question {
    padding: 14px 16px;
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 16px 16px;
  }
}

/* ===== MOBILE POLISH: FAQs ===== */
@media (max-width: 700px) {
  .faqs-section .container { padding: 0 12px; box-sizing: border-box; }
  .faqs-banner { padding: 92px 8px 28px; }
  .faqs-banner .banner-text h1 { font-size: 1.4rem; line-height: 1.2; }
  .faqs-banner .banner-text .lead { font-size: .9rem; line-height: 1.45; }
  .section-title { font-size: 1.35rem; margin-bottom: 6px; }
  .section-subtitle { font-size: .9rem; margin-bottom: 18px; }
  .faqs-wrapper { gap: 10px; }
  .faq-item {
    border-radius: 12px;
    box-shadow: 0 18px 50px -14px rgba(31,31,40,.08);
    border: 1px solid rgba(0,0,0,.04);
  }
  .faq-question {
    padding: 14px;
    gap: 10px;
    align-items: flex-start;
    min-height: 48px;
  }
  .faq-question .question-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }
  .faq-question .q-text {
    font-size: 1rem;
    line-height: 1.35;
    word-break: break-word;
  }
  .faq-question .q-label { margin-right: 0; }
  .faq-question .question-right {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #f5f6f9;
    border: 1px solid rgba(0,0,0,.06);
  }
  .faq-question .toggle-icon { font-size: 1.25rem; }
  .faq-answer {
    padding: 0 14px 14px;
    font-size: .98rem;
    line-height: 1.55;
  }
  .faq-answer p { margin: 0; white-space: pre-line; }
  .faq-question:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
  .faqs-section { padding: 38px 4px 56px; }
}

/* extra small phones */
@media (max-width: 360px) {
  .faq-question { padding: 12px; }
  .faq-answer { padding: 0 12px 12px; }
  .faq-question .question-right { width: 30px; height: 30px; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
