/* ==========================================================================
   Vision Court — FAQ Page
   ========================================================================== */

:root {
  --faq-navy: #060e1c;
  --faq-navy-mid: #0d1a33;
  --faq-navy-light: #132040;
  --faq-gold: #60a5fa;
  --faq-gold-dim: rgba(96, 165, 250, 0.15);
  --faq-blue: #2563eb;
  --faq-blue-dim: rgba(37, 99, 235, 0.15);
  --faq-white: #ffffff;
  --faq-white-70: rgba(255, 255, 255, 0.7);
  --faq-white-40: rgba(255, 255, 255, 0.4);
  --faq-white-10: rgba(255, 255, 255, 0.1);
  --faq-white-06: rgba(255, 255, 255, 0.06);
  --faq-border: rgba(255, 255, 255, 0.1);
  --faq-radius: 16px;
  --faq-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.vc-faq *,
.vc-faq *::before,
.vc-faq *::after {
  box-sizing: border-box;
}

/* Prevent any child from causing horizontal page scroll.
   overflow-x: clip (not hidden) avoids creating a new scroll container,
   which would add a second scrollbar alongside the browser's native one. */
.vc-faq {
  overflow-x: clip;
  /* Tell browser only vertical scroll happens — eliminates 300ms touch delay */
  touch-action: pan-y;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.vc-faq__hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-color: var(--faq-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
  overflow-x: clip;
}

.vc-faq__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Ccircle cx='45' cy='45' r='42' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='28' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='14' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.8'/%3E%3C/svg%3E"),
    linear-gradient(
      110deg,
      rgba(4, 10, 28, 0.97) 0%,
      rgba(5, 13, 40, 0.9) 42%,
      rgba(7, 18, 54, 0.58) 65%,
      rgba(8, 22, 62, 0.24) 100%
    );
  background-size:
    90px 90px,
    cover;
  z-index: 1;
  pointer-events: none;
}

.vc-faq__hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.vc-faq__hero-inner {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 60px;
  align-items: center;
  padding: 140px 0 100px;
  animation: faqFadeUp 0.7s ease both;
}

/* Left column */
.vc-faq__hero-left {
  min-width: 0;
}

/* Right column */
.vc-faq__hero-right {
  min-width: 0;
  animation: faqFadeUp 0.7s 0.18s ease both;
}

/* Pill */
.vc-faq__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--faq-gold-dim);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--faq-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.vc-faq__pill::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--faq-gold);
  border-radius: 50%;
}

/* Title */
.vc-faq__hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--faq-white);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.vc-faq__hero-accent {
  color: var(--faq-gold);
}

/* Lead */
.vc-faq__hero-lead {
  font-size: 1.12rem;
  color: var(--faq-white-70);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 560px;
}

/* Search */
.vc-faq__hero-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color var(--faq-transition),
    background var(--faq-transition);
  /* Promote to own layer so it doesn't cause repaints during scroll */
  will-change: transform;
}

.vc-faq__hero-search:focus-within {
  border-color: var(--faq-gold);
  background: rgba(255, 255, 255, 0.12);
}

.vc-faq__search-icon {
  position: absolute;
  left: 18px;
  color: var(--faq-white-40);
  pointer-events: none;
  flex-shrink: 0;
}

.vc-faq__search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--faq-white);
  font-size: 0.95rem;
  padding: 14px 48px 14px 48px;
}

.vc-faq__search-input::placeholder {
  color: var(--faq-white-40);
}

.vc-faq__search-clear {
  position: absolute;
  right: 16px;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--faq-white-40);
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 50%;
  transition:
    color var(--faq-transition),
    background var(--faq-transition);
}

.vc-faq__search-clear:hover {
  color: var(--faq-white);
  background: var(--faq-white-10);
}

/* ── Hero right card ── */
.vc-faq__hero-card {
  background: rgba(4, 12, 38, 0.75);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 20px;
  padding: 32px 28px 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  will-change: transform;
}

.vc-faq__hero-card-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faq-gold);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-faq__hero-card-heading::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--faq-gold);
  border-radius: 2px;
}

.vc-faq__hero-card-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vc-faq__hero-card-links li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--faq-white-70);
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
  transition:
    background var(--faq-transition),
    color var(--faq-transition);
}

.vc-faq__hero-card-links li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--faq-white);
}

.vc-faq__hero-card-links li a svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--faq-gold);
  opacity: 0.85;
}

.vc-faq__hero-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--faq-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.vc-faq__hero-card-footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faq-gold);
  flex-shrink: 0;
}

.vc-faq__hero-card-footer-text {
  font-size: 0.82rem;
  color: var(--faq-white-70);
  line-height: 1.4;
}

.vc-faq__hero-card-footer-text strong {
  display: block;
  color: var(--faq-white);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ==========================================================================
   FAQ BODY
   ========================================================================== */

.vc-faq__body {
  background: #f8fafc;
  padding: 80px 0 100px;
}

/* ── Two-column layout ───────────────────────────────────────── */
.vc-faq__layout {
  display: grid;
  grid-template-columns: 252px 1fr;
  gap: 36px;
  align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.vc-faq__sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  padding: 24px 16px;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
}

.vc-faq__sidebar-head {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 14px 4px;
}

/* ── Tabs (vertical sidebar nav) ─────────────────────────────── */
.vc-faq__tabs {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vc-faq__tab {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  border-radius: 11px;
  padding: 10px 12px;
  cursor: pointer;
  text-align: left;
  color: #475569;
  font-size: 0.88rem;
  font-weight: 500;
  transition:
    background var(--faq-transition),
    color var(--faq-transition);
  position: relative;
  white-space: nowrap;
}

.vc-faq__tab:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.vc-faq__tab--active {
  background: rgba(37, 99, 235, 0.07);
  color: #2563eb;
  font-weight: 600;
}

.vc-faq__tab--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 3px;
  background: #2563eb;
  border-radius: 0 2px 2px 0;
}

.vc-faq__tab-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #64748b;
  transition:
    background var(--faq-transition),
    color var(--faq-transition);
}

.vc-faq__tab--active .vc-faq__tab-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.vc-faq__tab-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vc-faq__tab-count {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  background: #f1f5f9;
  border-radius: 20px;
  padding: 2px 7px;
  flex-shrink: 0;
}

.vc-faq__tab--active .vc-faq__tab-count {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

/* ── Main panel ──────────────────────────────────────────────── */
.vc-faq__main {
  min-width: 0;
}

/* ── Accordion ─────────────────────────────────────────────── */
.vc-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-faq__item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: border-color var(--faq-transition);
}

.vc-faq__item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.07);
}

.vc-faq__item--open {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

.vc-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color var(--faq-transition);
}

/* Question text span — must be able to shrink so long text wraps */
.vc-faq__question > span:first-child {
  min-width: 0;
  flex: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}

.vc-faq__question:hover,
.vc-faq__item--open .vc-faq__question {
  color: #2563eb;
}

/* Icon: rotates to × when open */
.vc-faq__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition:
    transform var(--faq-transition),
    background var(--faq-transition),
    border-color var(--faq-transition),
    color var(--faq-transition);
}

.vc-faq__item--open .vc-faq__icon {
  transform: rotate(45deg);
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
  color: #2563eb;
}

/* Answer (height transitions via JS max-height) */
.vc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.vc-faq__answer-inner {
  padding: 14px 22px 22px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
}

.vc-faq__answer-inner p {
  margin: 0 0 12px;
}

.vc-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

.vc-faq__answer-inner strong {
  color: #0f172a;
  font-weight: 600;
}

.vc-faq__answer-inner a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--faq-transition);
}

.vc-faq__answer-inner a:hover {
  opacity: 0.8;
}

/* Empty state */
.vc-faq__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 60px 24px;
  color: #94a3b8;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.vc-faq__empty p {
  margin: 0;
  font-size: 1rem;
}

.vc-faq__empty-reset {
  background: none;
  border: none;
  color: #2563eb;
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   CTA — Still Have Questions
   ========================================================================== */

.vc-faq__cta {
  background: var(--faq-navy-mid);
  border-top: 1px solid var(--faq-border);
  padding: 80px 0 100px;
}

.vc-faq__cta-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--faq-navy-light);
  border: 1px solid var(--faq-border);
  border-radius: 24px;
  padding: 52px 48px 48px;
  position: relative;
  overflow: hidden;
}

/* Subtle glow behind the card */
.vc-faq__cta-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.vc-faq__cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--faq-blue-dim);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  margin: 0 auto 24px;
}

.vc-faq__cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--faq-white);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.vc-faq__cta-text {
  font-size: 1rem;
  color: var(--faq-white-70);
  line-height: 1.7;
  margin: 0 0 36px;
}

.vc-faq__cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.vc-faq__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform var(--faq-transition),
    opacity var(--faq-transition),
    box-shadow var(--faq-transition);
  white-space: nowrap;
}

.vc-faq__cta-btn:hover {
  transform: translateY(-2px);
}

.vc-faq__cta-btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.vc-faq__cta-btn--wa:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42);
  color: #fff;
}

.vc-faq__cta-btn--outline {
  background: transparent;
  color: var(--faq-white);
  border: 1px solid var(--faq-border);
}

.vc-faq__cta-btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--faq-white);
  background: var(--faq-white-06);
}

/* ==========================================================================
   SCROLL-REVEAL
   ========================================================================== */

.cct-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  /* Pre-promote so browser doesn't composite on the fly during reveal */
  will-change: transform, opacity;
}

.cct-reveal--visible {
  opacity: 1;
  transform: translateY(0);
  /* Release the layer once animation is done */
  will-change: auto;
}

/* Stagger delays for accordion items */
.vc-faq__item.cct-reveal:nth-child(1) {
  transition-delay: 0.04s;
}
.vc-faq__item.cct-reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.vc-faq__item.cct-reveal:nth-child(3) {
  transition-delay: 0.12s;
}
.vc-faq__item.cct-reveal:nth-child(4) {
  transition-delay: 0.16s;
}
.vc-faq__item.cct-reveal:nth-child(5) {
  transition-delay: 0.2s;
}
.vc-faq__item.cct-reveal:nth-child(6) {
  transition-delay: 0.24s;
}
.vc-faq__item.cct-reveal:nth-child(7) {
  transition-delay: 0.28s;
}
.vc-faq__item.cct-reveal:nth-child(8) {
  transition-delay: 0.32s;
}
.vc-faq__item.cct-reveal:nth-child(9) {
  transition-delay: 0.36s;
}
.vc-faq__item.cct-reveal:nth-child(10) {
  transition-delay: 0.4s;
}
.vc-faq__item.cct-reveal:nth-child(11) {
  transition-delay: 0.44s;
}
.vc-faq__item.cct-reveal:nth-child(12) {
  transition-delay: 0.48s;
}
.vc-faq__item.cct-reveal:nth-child(13) {
  transition-delay: 0.52s;
}
.vc-faq__item.cct-reveal:nth-child(14) {
  transition-delay: 0.56s;
}
.vc-faq__item.cct-reveal:nth-child(15) {
  transition-delay: 0.6s;
}
.vc-faq__item.cct-reveal:nth-child(16) {
  transition-delay: 0.64s;
}

/* ==========================================================================
   HERO ENTRANCE ANIMATION
   ========================================================================== */

@keyframes faqFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ── 1200px: slightly tighter hero ────────────────────────────────────── */
@media (max-width: 1200px) {
  .vc-faq__hero-inner {
    grid-template-columns: 1fr 460px;
    gap: 48px;
  }
}

/* ── 1024px: compress hero right column ───────────────────────────────── */
@media (max-width: 1024px) {
  .vc-faq__hero-inner {
    grid-template-columns: 1fr 380px;
    gap: 36px;
    padding: 120px 0 80px;
  }

  /* Sidebar collapses to horizontal pill tabs at tablet */
  .vc-faq__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .vc-faq__sidebar {
    position: static;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
    min-width: 0;
    overflow-x: clip;
  }

  .vc-faq__sidebar-head {
    display: none;
  }

  .vc-faq__tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .vc-faq__tab {
    width: auto;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 8px 16px 8px 10px;
    font-size: 0.85rem;
  }

  .vc-faq__tab--active {
    border-color: rgba(37, 99, 235, 0.35);
  }

  .vc-faq__tab--active::before {
    display: none;
  }

  .vc-faq__tab-icon {
    width: 22px;
    height: 22px;
    background: transparent;
  }

  .vc-faq__tab-count {
    display: none;
  }
}

/* ── 768px: single-column hero, hide popular questions card ───────────── */
@media (max-width: 768px) {
  /* Force container to be properly constrained */
  .vc-faq__hero .container,
  .vc-faq__body .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }

  /* Kill backdrop-filter on mobile — it forces full-screen GPU compositing
     on every scroll frame and is the main cause of scroll jank */
  .vc-faq__hero-search {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.13);
    will-change: auto;
  }

  .vc-faq__hero-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(4, 12, 38, 0.9);
    will-change: auto;
  }

  /* Hero: single column, hide right card */
  .vc-faq__hero-inner {
    display: block;
    padding: 100px 0 60px;
    width: 100%;
  }

  .vc-faq__hero-right {
    display: none;
  }

  .vc-faq__hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    margin-bottom: 16px;
  }

  .vc-faq__hero-lead {
    font-size: 0.97rem;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .vc-faq__hero-search {
    max-width: 100%;
  }

  .vc-faq__pill {
    font-size: 0.74rem;
    margin-bottom: 18px;
  }

  /* FAQ body */
  .vc-faq__body {
    padding: 40px 0 64px;
  }

  .vc-faq__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .vc-faq__sidebar {
    position: static;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 16px;
    min-width: 0;
    overflow-x: clip;
  }

  .vc-faq__sidebar-head {
    display: none;
  }

  /* Horizontal scrolling pill tabs */
  .vc-faq__tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .vc-faq__tabs::-webkit-scrollbar {
    display: none;
  }

  .vc-faq__tab {
    flex-shrink: 0;
    width: auto;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 9px 16px 9px 12px;
    font-size: 0.85rem;
    gap: 7px;
  }

  .vc-faq__tab--active {
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(37, 99, 235, 0.07);
    color: #2563eb;
  }

  .vc-faq__tab--active::before {
    display: none;
  }

  .vc-faq__tab-icon {
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 6px;
  }

  .vc-faq__tab-count {
    display: none;
  }

  /* Accordion */
  .vc-faq__main {
    min-width: 0;
    overflow-x: clip;
  }

  .vc-faq__accordion {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .vc-faq__item {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .vc-faq__question {
    padding: 16px 16px;
    font-size: 0.93rem;
    gap: 12px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  .vc-faq__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .vc-faq__answer-inner {
    padding: 0 16px 18px;
    font-size: 0.92rem;
  }

  /* CTA */
  .vc-faq__cta {
    padding: 56px 0 72px;
  }

  .vc-faq__cta-card {
    padding: 36px 24px 32px;
  }

  .vc-faq__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-faq__cta-btn {
    justify-content: center;
  }
}

/* ── 480px: tighter mobile ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .vc-faq__hero-inner {
    padding: 90px 0 52px;
  }

  .vc-faq__hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
  }

  .vc-faq__hero-lead {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .vc-faq__search-input {
    font-size: 0.88rem;
    padding: 12px 44px 12px 44px;
  }

  .vc-faq__body {
    padding: 32px 0 56px;
  }

  .vc-faq__question {
    font-size: 0.9rem;
    padding: 15px 14px;
  }

  .vc-faq__icon {
    width: 26px;
    height: 26px;
  }

  .vc-faq__answer-inner {
    font-size: 0.9rem;
    padding: 0 14px 16px;
    line-height: 1.7;
  }

  .vc-faq__cta-card {
    padding: 28px 18px 24px;
  }

  .vc-faq__cta-title {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
  }

  .vc-faq__cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 18px;
  }
}

/* ── 360px: smallest phones ───────────────────────────────────────────── */
@media (max-width: 360px) {
  .vc-faq__hero .container,
  .vc-faq__body .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .vc-faq__hero-inner {
    padding: 80px 0 48px;
  }

  .vc-faq__hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
  }

  .vc-faq__pill {
    font-size: 0.7rem;
    padding: 5px 11px;
    margin-bottom: 14px;
  }

  .vc-faq__hero-lead {
    font-size: 0.88rem;
    margin-bottom: 22px;
  }

  .vc-faq__tab {
    font-size: 0.8rem;
    padding: 7px 12px 7px 9px;
  }

  .vc-faq__question {
    font-size: 0.87rem;
    padding: 14px 12px;
  }

  .vc-faq__answer-inner {
    font-size: 0.87rem;
    padding: 0 12px 14px;
  }

  .vc-faq__cta-card {
    padding: 24px 14px 20px;
  }

  .vc-faq__cta-btn {
    font-size: 0.86rem;
    padding: 11px 18px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cct-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vc-faq__hero-inner {
    animation: none;
  }

  .vc-faq__answer {
    transition: none;
  }
}
