:root{
  --hfaq-text:#0f172a;
  --hfaq-muted:#475569;
  --hfaq-line:rgba(2, 6, 23, .12);
  --hfaq-accent:#008c48;
}

.hartl-faq-premium{
  position:relative;
  width:100%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* subtle overlay for background images so text stays readable */
.hartl-faq-premium::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(0deg, rgba(255,255,255,.88), rgba(255,255,255,.88));
}

/* if only color bg, keep overlay transparent */
.hartl-faq-premium[style*="background-color"]::before{ background:transparent; }

.hartl-faq-inner{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  padding:90px 20px;
}

.hartl-faq-head{
  text-align:center;
  margin:0 auto 40px;
}

.hartl-faq-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--hfaq-muted);
  margin:0 0 20px;
}

.hartl-faq-title{
  margin:0;
  line-height:1;
  font-weight:800;
  letter-spacing:-0.02em;
}

.hartl-faq-title-solid,
.hartl-faq-title-outline{
  display:block;
  font-size:56px;
}

.hartl-faq-title-solid{ color:var(--hfaq-text); }

.hartl-faq-title-outline{
  color:transparent;
  -webkit-text-stroke:2px var(--hfaq-text);
  text-stroke:2px var(--hfaq-text);
}

.hartl-faq-subtitle{
  margin:14px auto 0;
  max-width:720px;
  color:var(--hfaq-muted);
  font-size:14px;
  line-height:1.6;
}

.hartl-faq-accordion{
  margin:40px auto 0;
  max-width:100%;
  border-top:1px solid var(--hfaq-line);
  border-bottom:1px solid var(--hfaq-line);
}

.hartl-faq-row{
  border-top:1px solid var(--hfaq-line);
}
.hartl-faq-row:first-child{ border-top:none; }

.hartl-faq-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  padding:22px 0;
  cursor:pointer;
  color:var(--hfaq-text);
  text-align:left;
  font:inherit;
  outline:none;
}

.hartl-faq-trigger:focus-visible{
  outline:2px solid rgba(0,140,72,.35);
  outline-offset:6px;
}

.hartl-faq-q{
  font-size:20px;
  font-weight:700;
  line-height:1.2;
}

.hartl-faq-plus{
  width:28px;
  height:28px;
  flex:0 0 28px;
  position:relative;
  border:0;
}

.hartl-faq-plus::before,
.hartl-faq-plus::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:2px;
  background:var(--hfaq-accent);
  transform:translate(-50%,-50%);
  transition:transform .25s ease;
}

.hartl-faq-plus::after{
  transform:translate(-50%,-50%) rotate(90deg);
}

.hartl-faq-row.is-open .hartl-faq-plus::after{
  transform:translate(-50%,-50%) rotate(0deg);
}

.hartl-faq-panel{
  overflow:hidden;
  transition:max-height .35s ease;
}

.hartl-faq-a{
  padding:0 0 24px;
  color:var(--hfaq-muted);
  font-size:15px;
  line-height:1.65;
  opacity:0;
  transform:translateY(-6px);
  transition:opacity .25s ease, transform .25s ease;
}

.hartl-faq-row.is-open .hartl-faq-a{
  opacity:1;
  transform:none;
}

.hartl-faq-a p{ margin:0 0 10px; }
.hartl-faq-a p:last-child{ margin-bottom:0; }

/* responsive */
@media (max-width: 768px){
  .hartl-faq-inner{ padding:70px 18px; }
  .hartl-faq-title-solid,
  .hartl-faq-title-outline{ font-size:42px; }
  .hartl-faq-q{ font-size:17px; }
}

