
/* Servcal V2.8 — SEO visible content and accessibility */
.seo-faq {
  background:
    radial-gradient(circle at 90% 10%, rgba(47,140,255,.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.seo-faq-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.seo-faq-heading h2 {
  margin: 12px 0 0;
  color: #0a1830;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.15rem, 4.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.seo-faq-item {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(35,91,161,.15);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(10,36,75,.07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.seo-faq-item:hover,
.seo-faq-item[open] {
  transform: translateY(-4px);
  border-color: rgba(255,122,47,.45);
  box-shadow: 0 24px 55px rgba(10,36,75,.11);
}
.seo-faq-item summary {
  position: relative;
  padding-right: 34px;
  color: #0a1830;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.seo-faq-item summary::-webkit-details-marker { display:none; }
.seo-faq-item summary::after {
  content: "+";
  position: absolute;
  top: -2px;
  right: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg,#075fc7,#ff7a2f);
}
.seo-faq-item[open] summary::after { content: "−"; }
.seo-faq-item p {
  margin: 18px 0 0;
  color: #53677f;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .seo-faq-grid { grid-template-columns: 1fr; }
  .seo-faq-item { min-height: auto; }
}
