 :root {
      --teamhome-primary: #f05c62;
      --teamhome-primary-dark: #d44850;
      --teamhome-primary-soft: rgba(240, 92, 98, 0.09);
      --teamhome-secondary: #333945;
      --teamhome-secondary-light: rgba(51, 57, 69, 0.07);
      --teamhome-white: #ffffff;
      --teamhome-text-muted: #6b7280;
      --teamhome-border: rgba(51, 57, 69, 0.14);
    }

  

    /* ── Section ── */
    .teamhome-homepage-FAQ {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ── Header ── */
    .teamhome-homepage-FAQ__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 2.5px solid var(--teamhome-primary);
    }

    .teamhome-homepage-FAQ__header-left { flex: 1; }

    .teamhome-homepage-FAQ__eyebrow {
      display: inline-block;
      background: var(--teamhome-primary);
      color: var(--teamhome-white);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 4px;
      margin-bottom: 12px;
    }

    .teamhome-homepage-FAQ__title {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--teamhome-secondary);
      line-height: 1.2;
    }

    .teamhome-homepage-FAQ__subtitle {
      margin-top: 8px;
      font-size: 14px;
      color: var(--teamhome-text-muted);
      line-height: 1.6;
      max-width: 420px;
    }

    /* ── Stats ── */
    .teamhome-homepage-FAQ__stats {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex-shrink: 0;
    }

    .teamhome-homepage-FAQ__stat {
      text-align: center;
      background: var(--teamhome-white);
      border: 0.5px solid var(--teamhome-border);
      border-radius: 10px;
      padding: 10px 18px;
      min-width: 90px;
    }

    .teamhome-homepage-FAQ__stat-number {
      display: block;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--teamhome-primary);
      line-height: 1;
    }

    .teamhome-homepage-FAQ__stat-label {
      display: block;
      font-size: 10px;
      color: var(--teamhome-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 3px;
    }

    /* ── FAQ List ── */
    .teamhome-homepage-FAQ__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    /* ── FAQ Item: uses <details> for pure HTML accordion ── */
    .teamhome-homepage-FAQ__item {
      background: var(--teamhome-white);
      border: 0.5px solid var(--teamhome-border);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .teamhome-homepage-FAQ__item[open] {
      border-color: var(--teamhome-primary);
      box-shadow: 0 0 0 3px var(--teamhome-primary-soft);
    }

    /* ── Question (summary) ── */
    .teamhome-homepage-FAQ__question {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      cursor: pointer;
      list-style: none;
      transition: background 0.18s ease;
      user-select: none;
    }

    .teamhome-homepage-FAQ__question::-webkit-details-marker { display: none; }

    .teamhome-homepage-FAQ__question:hover {
      background: var(--teamhome-primary-soft);
    }

    .teamhome-homepage-FAQ__item[open] .teamhome-homepage-FAQ__question {
      background: var(--teamhome-primary-soft);
    }

    .teamhome-homepage-FAQ__question-number {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--teamhome-primary);
      min-width: 26px;
      flex-shrink: 0;
      opacity: 0.75;
    }

    .teamhome-homepage-FAQ__question-text {
      font-size: 15px;
      font-weight: 500;
      color: var(--teamhome-secondary);
      line-height: 1.45;
      flex: 1;
    }

    /* ── Plus/Cross icon (CSS only, no JS) ── */
    .teamhome-homepage-FAQ__question-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1.5px solid var(--teamhome-primary);
      position: relative;
      transition: background 0.2s ease, transform 0.28s ease;
    }

    .teamhome-homepage-FAQ__question-icon::before,
    .teamhome-homepage-FAQ__question-icon::after {
      content: '';
      position: absolute;
      background: var(--teamhome-primary);
      border-radius: 2px;
      transition: background 0.2s, transform 0.28s ease;
    }

    /* horizontal bar */
    .teamhome-homepage-FAQ__question-icon::before {
      width: 10px; height: 1.5px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    /* vertical bar */
    .teamhome-homepage-FAQ__question-icon::after {
      width: 1.5px; height: 10px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    /* When open: icon becomes × (rotate 45deg, fill bg) */
    .teamhome-homepage-FAQ__item[open] .teamhome-homepage-FAQ__question-icon {
      background: var(--teamhome-primary);
      transform: rotate(45deg);
    }

    .teamhome-homepage-FAQ__item[open] .teamhome-homepage-FAQ__question-icon::before,
    .teamhome-homepage-FAQ__item[open] .teamhome-homepage-FAQ__question-icon::after {
      background: var(--teamhome-white);
    }

    /* ── Answer ── */
    .teamhome-homepage-FAQ__answer {
      padding: 0 20px 20px 60px;
    }

    .teamhome-homepage-FAQ__answer-text {
      font-size: 14px;
      line-height: 1.8;
      color: var(--teamhome-text-muted);
    }

    .teamhome-homepage-FAQ__answer-text strong {
      color: var(--teamhome-primary);
      font-weight: 500;
    }

    /* ── Answer meta tags (areas, services, etc.) ── */
    .teamhome-homepage-FAQ__answer-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .teamhome-homepage-FAQ__answer-tag {
      font-size: 11px;
      font-weight: 500;
      color: var(--teamhome-primary);
      background: var(--teamhome-primary-soft);
      border: 0.5px solid rgba(240, 92, 98, 0.25);
      border-radius: 20px;
      padding: 3px 10px;
    }

    /* ── Answer highlight box ── */
    .teamhome-homepage-FAQ__answer-highlight {
      margin-top: 10px;
      padding: 10px 14px;
      background: var(--teamhome-secondary-light);
      border-left: 3px solid var(--teamhome-primary);
      border-radius: 0 6px 6px 0;
      font-size: 13px;
      color: var(--teamhome-secondary);
      line-height: 1.6;
    }

    /* ── Footer CTA ── */
    .teamhome-homepage-FAQ__footer {
      margin-top: 2rem;
      padding: 18px 20px;
      background: var(--teamhome-secondary-light);
      border-radius: 10px;
      border-left: 3px solid var(--teamhome-primary);
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .teamhome-homepage-FAQ__footer-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: var(--teamhome-primary-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .teamhome-homepage-FAQ__footer-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--teamhome-primary);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .teamhome-homepage-FAQ__footer-text {
      font-size: 13px;
      color: var(--teamhome-text-muted);
      line-height: 1.7;
    }

    .teamhome-homepage-FAQ__footer-link {
      color: var(--teamhome-primary);
      font-weight: 500;
      text-decoration: none;
    }

    .teamhome-homepage-FAQ__footer-link:hover { text-decoration: underline; }

    /* ── Responsive ── */
    @media (max-width: 600px) {
      .teamhome-homepage-FAQ__header { flex-direction: column; gap: 1.25rem; }
      .teamhome-homepage-FAQ__stats { flex-direction: row; }
      .teamhome-homepage-FAQ__title { font-size: 26px; }
      .teamhome-homepage-FAQ__answer { padding-left: 20px; }
    }