/* =========================================================
   FAQ — PREMIUM ACCORDION (consistent with hero/services)
   Requires your existing HTML (faq-item/faq-q/faq-a)
   Font Awesome icons supported
   ========================================================= */

.cm-section#faq{
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 86px) 0;
  background: linear-gradient(180deg, #F7F8FC 0%, #EEF2F9 100%);
}
.cm-section#faq::before{
  content:"";
  position:absolute;
  inset:-210px -180px -240px -180px;
  background:
    radial-gradient(980px 560px at 18% 18%, rgba(244,180,0,.14), transparent 62%),
    radial-gradient(860px 540px at 82% 18%, rgba(11,18,32,.10), transparent 62%),
    radial-gradient(980px 620px at 50% 112%, rgba(244,180,0,.08), transparent 60%);
  pointer-events:none;
  z-index:0;
}
.cm-section#faq::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(11,18,32,.14), transparent);
  z-index:0;
}
.cm-section#faq .container{ position:relative; z-index:1; }

/* Replace inline grid-2 styles visually */
#faq .grid-2{
  display:grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-top: 18px !important;
}

/* FAQ card */
.faq-item{
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow1);
  overflow: hidden;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.faq-item:hover{
  transform: translateY(-1px);
  border-color: rgba(244,180,0,.22);
  box-shadow: var(--shadow2);
}

/* Question button */
.faq-q{
  width:100%;
  border:0;
  background: transparent;
  cursor:pointer;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 16px;
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -.2px;
  color: rgba(11,18,32,.92);
  position: relative;
}

/* Left icon (without changing HTML) */
.faq-q::before{
  content:"\f059"; /* fa-circle-question */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--brand);
  margin-right: 10px;
}
.faq-q > span:first-child{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Right icon as premium pill */
.faq-icon{
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(11,18,32,.03);
  border: 1px solid rgba(11,18,32,.08);
  color: rgba(11,18,32,.72);
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(11,18,32,.06);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

/* Answer */
.faq-a{
  padding: 0 16px 16px;
  color: rgba(11,18,32,.68);
  font-weight: 650;
  line-height: 1.7;
  font-size: 14.75px;
  display:none;
}
.faq-a strong{ color: rgba(11,18,32,.92); font-weight: 900; }

/* Open state */
.faq-item.is-open .faq-a{ display:block; }
.faq-item.is-open .faq-icon{
  transform: rotate(45deg);
  background: rgba(244,180,0,.14);
  border-color: rgba(244,180,0,.26);
}

/* Focus */
.faq-q:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px rgba(244,180,0,.18);
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 991px){
  #faq .grid-2{ grid-template-columns: 1fr !important; }
}
/* =========================================
   SECTION PILL (Google-style badge)
   Reusable across project
   ========================================= */

.sec-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(11,18,32,.12);
  box-shadow: 0 14px 30px rgba(11,18,32,.08);
  font-weight: 900;
  letter-spacing: .35px;
  font-size: 14px;
  color: rgba(11,18,32,.86);
  margin-bottom: 14px;
}

/* Google variant */
.sec-pill--google{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.95),
    rgba(255,255,255,.85)
  );
  border-color: rgba(11,18,32,.10);
}

.sec-pill--google i{
  font-size: 16px;
  background: linear-gradient(90deg,#EA4335,#FBBC05,#34A853,#4285F4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
