/* =========================================================
   ARCUWEB FAQ – GLASS DARK + ACCENT ORANGE (FINAL)
========================================================= */

:root{
  --aw-accent:#ff5a1f;
  --aw-t1: rgba(255,255,255,.96);
  --aw-t2: rgba(255,255,255,.78);
  --aw-t3: rgba(255,255,255,.62);

  --aw-border: rgba(255,255,255,.14);
  --aw-border2: rgba(255,255,255,.18);
  --aw-glass: rgba(0,0,0,.30);

  --aw-r2: 22px;
  --aw-shadow: 0 18px 70px rgba(0,0,0,.55);
}

.aw-faq-page{
  background: transparent;
  color: var(--aw-t1);
  padding: clamp(26px, 3vw, 54px) 0;
  position: relative;
  z-index: 2;
}

.aw-faq-page, .aw-faq-page *{
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.aw-faq__container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* HERO */
.aw-faq-hero{ margin-bottom: 16px; }

.aw-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,90,31,.95);
  margin-bottom: 8px;
}
.aw-kicker::before{
  content:"";
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,90,31,.95);
  box-shadow: 0 0 0 6px rgba(255,90,31,.12);
}

.aw-faq-title{
  margin: 0 0 10px 0;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--aw-t1);
  text-shadow: 0 6px 24px rgba(0,0,0,.65);
}

.aw-faq-subtitle{
  margin: 0 0 16px 0;
  max-width: 78ch;
  color: var(--aw-t2);
  font-size: 15px;
  line-height: 1.7;
}

/* SEARCH */
.aw-faq-search{
  border: 1px solid var(--aw-border);
  background: rgba(0,0,0,.28);
  border-radius: 18px;
  padding: 12px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 14px;
}

.aw-faq-search__icon{
  color: rgba(255,255,255,.55);
  font-weight: 900;
}

.aw-faq-search__input{
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255,255,255,.95);
  font-weight: 700;
  font-size: 14px;
}
.aw-faq-search__input::placeholder{
  color: rgba(255,255,255,.55);
}

/* CHIPS */
.aw-faq-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.aw-chip{
  appearance: none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.aw-chip:hover{
  transform: translateY(-1px);
  border-color: var(--aw-border2);
  background: rgba(255,255,255,.06);
}

.aw-chip.is-active{
  border-color: rgba(255,90,31,.60);
  background: rgba(255,90,31,.18);
}

/* ACCORDION */
.aw-faq-list{
  border: 1px solid var(--aw-border);
  background: rgba(0,0,0,.22);
  border-radius: var(--aw-r2);
  padding: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.aw-accordion{
  display: grid;
  gap: 10px;
}

.aw-acc{
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.26);
  color: rgba(255,255,255,.92);
  border-radius: 16px;
  padding: 14px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.aw-acc:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 35px rgba(0,0,0,.30);
}

.aw-acc__icon{
  color: rgba(255,90,31,.95);
  font-size: 18px;
  font-weight: 900;
}

.aw-acc__panel{
  display: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  border-radius: 16px;
  padding: 14px;
  color: rgba(255,255,255,.74);
  line-height: 1.7;
  margin-top: -6px;
}

.aw-acc.is-open + .aw-acc__panel{ display: block; }

.aw-faq-empty{
  margin-top: 12px;
  color: rgba(255,255,255,.70);
  font-weight: 700;
}

/* CTA SECTION */
.aw-faq-cta{
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.26);
  border-radius: var(--aw-r2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.aw-faq-cta__inner{
  padding: 18px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
  align-items: center;
}

.aw-faq-cta__title{
  margin: 6px 0 8px 0;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,.96);
}

.aw-faq-cta__text{
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
  font-size: 14px;
}

.aw-faq-cta__buttons{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aw-pill-btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.95);
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.aw-pill-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,90,31,.45);
}

.aw-pill-btn--primary{
  border-color: rgba(255,90,31,.55);
  background: rgba(255,90,31,.18);
}

/* RESPONSIVE */
@media (max-width: 860px){
  .aw-faq-cta__inner{ grid-template-columns: 1fr; }
  .aw-faq-cta__buttons{ flex-direction: row; flex-wrap: wrap; }
}
