.sidebar-cta {
    margin-top: 28px;
    background: #023f38;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}
.sidebar-cta h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.sidebar-cta p {
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-weight: normal;
    margin-top: 0;
    text-align: center;
}
.sidebar-cta a {
    display: block;
    background: #e04a43;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}


/* ══ SECTION ══ */
.faq-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(224,74,67,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ══ HEADER ══ */
.faq-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative; z-index: 1;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.faq-eyebrow::before, .faq-eyebrow::after {
  content: '';
  display: block;
  width: 36px; height: 1.5px;
  background: var(--red);
  opacity: 0.55;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.07;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.faq-title em { font-style: italic; color: var(--red); }

.faq-subtitle {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
}

/* ══ HORIZONTAL LAYOUT ══ */
.faq-layout {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative; z-index: 1;
}

/* ── LEFT NAV ── */
.faq-nav {
  width: 252px;
  flex-shrink: 0;
  position: sticky;
  top: 162px;
}

.nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-left: 2px;
}

.nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-radius: 10px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.22s ease;
  margin-bottom: 3px;
}

.nav-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgb(0 0 0);
    opacity: 1;
    flex-shrink: 0;
    transition: all 0.22s ease;
}

.nav-count {
  margin-left: auto;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(245,240,232,0.07);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-btn:hover {
  color: var(--cream);
  background: rgb(224 74 67 / 20%);
}
.nav-btn:hover .nav-count { opacity: 1; }

.nav-btn.active {
    color: #fff;
    background: #023f38;
}
.nav-btn.active .nav-dot {
  background: #fff;
  opacity: 1;
  box-shadow: 0 0 7px rgba(224,74,67,0.5);
}
.nav-btn.active .nav-count {
    opacity: 1;
    color: #fff;
    background: rgb(255 255 255 / 20%);
}

.nav-sep { height: 1px; background: var(--border); margin: 10px 0 10px 2px; }

/* ── DIVIDER ── */
.faq-rule {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 12%, var(--border) 88%, transparent);
  margin: 0 44px;
  align-self: stretch;
  flex-shrink: 0;
}

/* ── CONTENT PANEL ── */
.faq-content {
  flex: 1;
  min-width: 0;
}

/* Search */
.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #023f380a;
  border: 1px solid #023f38;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 36px;
  transition: border-color 0.2s, background 0.2s;
}
.faq-search:focus-within {
  border-color: rgba(224,74,67,0.4);
  background: rgba(224,74,67,0.04);
}
.faq-search svg { width: 16px; height: 16px; stroke: var(--muted); flex-shrink: 0; }
.faq-search input {
  flex: 1; background: none; border: none; outline: none;
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--cream);
}
.faq-search input::placeholder { color: var(--muted); }
.s-clear {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 20px; line-height: 1;
  display: none; padding: 0 2px;
}
.s-clear.on { display: block; }

/* Empty */
.faq-empty { display: none; text-align: center; padding: 64px 20px; color: var(--muted); }
.faq-empty.show { display: block; }
.faq-empty svg { opacity: 0.25; margin-bottom: 14px; }
.faq-empty h4 { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }

/* Group */
.faq-group { margin-bottom: 44px; }

.group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  opacity: 0.8;
}
.group-label::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(to right, #023f38, transparent);
}

/* FAQ item */
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 16px 19px 0;
  background: none; border: none; cursor: pointer;
  text-align: left;
}

.faq-q-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1; min-width: 0;
}

.q-num {
  font-size: 11px; font-weight: 700;
  color: var(--red); opacity: 0.45;
  margin-top: 3px; flex-shrink: 0; width: 24px;
  transition: opacity 0.2s ease;
  font-variant-numeric: tabular-nums;
}
.faq-item.open .q-num,
.faq-item:hover .q-num { opacity: 1; }

.q-text {
  font-size: 15px; font-weight: 600;
  color: var(--cream); line-height: 1.45;
  transition: color 0.2s;
}
.faq-item:hover .q-text { color: #e04a43; }

/* Toggle */
.faq-tog {
    width: 33px;
    height: 33px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgb(2 63 56 / 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.28s ease;
    position: relative;
}
.faq-tog span {
    position: absolute;
    background: #023f38;
    border-radius: 2px;
    transition: all 0.28s ease;
}
.faq-tog span:first-child  { width: 12px; height: 1.5px; }
.faq-tog span:last-child   { width: 1.5px; height: 12px; }
.faq-item.open .faq-tog {
    background: #cad7d5;
    border-color: #cad7d5;
}
.faq-item.open .faq-tog span {
    background: #023f38;
}
.faq-item.open .faq-tog span:last-child { transform: scaleY(0); }

/* Answer */
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
}
.faq-ans-inner {
  padding: 0 52px 22px 38px;
  font-size: 14.5px; color: var(--muted);
  font-weight: 300; line-height: 1.8;
}
.faq-ans-inner a { color: var(--red); text-decoration: none; font-weight: 500; }
.faq-ans-inner a:hover { text-decoration: underline; }
.faq-item.open .faq-ans { max-height: 500px; }

/* Search highlight */
mark {
  background: rgba(224,74,67,0.22);
  color: var(--cream);
  border-radius: 3px;
  padding: 0 2px;
}

/* ══ CTA ══ */
.faq-cta {
  margin-top: 52px;
  padding: 44px 0px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red) 0%, #c03d37 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  position: relative; overflow: hidden;
}
.faq-cta::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.faq-cta h3 {
  font-size: 24px; font-weight: 700; color: #e04a43; margin-bottom: 6px;
}
.faq-cta p { font-size: 14px; color: #000; font-weight: 300; }
.cta-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 34px;
  background: white; color: #c03d37;
  border: none; border-radius: 100px;
  cursor: pointer; text-decoration: none;
  position: relative; z-index: 1;
  transition: all 0.22s ease;
  white-space: nowrap;
  display: inline-block;
}
.cta-btn:hover {
  background: #e04a43; color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 860px) {
  .faq-layout { flex-direction: column; }
  .faq-nav {
    position: static; width: 100%;
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 28px;
  }
  .nav-label, .nav-sep { display: none; }
  .nav-btn { width: auto; font-size: 12.5px; padding: 8px 14px; margin-bottom: 0; }
  .nav-count { display: none; }
  .faq-rule { display: none; }
  .faq-section { padding: 60px 20px 80px; }
  .faq-cta { padding: 32px 28px; }
}
@media (max-width: 520px) {
  .faq-ans-inner { padding-left: 28px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-group { animation: fadeUp 0.38s ease both; }