.page-hero {
      margin-top: 70px;
      background: linear-gradient(160deg, var(--white) 0%, var(--page) 40%, var(--cream) 100%);
      padding: 3rem var(--layout-pad) 3.25rem;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=900&auto=format&fit=crop') center/cover no-repeat;
      opacity: 0.08;
      pointer-events: none;
    }

    .page-hero-inner {
      position: relative;
    }

    .page-hero .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.6rem;
    }

    .page-hero h1 {
      font-family: var(--font-family);
      font-size: clamp(1.85rem, 4vw, 2.5rem);
      font-weight: 700;
      color: var(--deep-mid);
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }

    .page-hero p {
      color: var(--text-muted);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.65;
      max-width: 540px;
    }

    .back-home {
      display: inline-block;
      margin-top: 1.25rem;
      color: var(--ember);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      border-bottom: 1px solid var(--blue-glow);
      transition: color 0.15s, border-color 0.15s;
    }

    .back-home:hover {
      color: var(--blue-dark);
      border-bottom-color: rgba(29, 78, 216, 0.45);
    }

    .faq-section {
      padding: 3rem var(--layout-pad) 4.5rem;
      background: var(--white);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--border-grey);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border-grey);
    }

    .faq-item:last-of-type {
      border-bottom: none;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 0;
      margin: 0;
      border: none;
      background: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-family);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--grey-900);
      line-height: 1.35;
      transition: color 0.15s ease;
    }

    .faq-question:hover,
    .faq-item.is-open .faq-question {
      color: var(--orange);
    }

    .faq-question__text {
      flex: 1;
      min-width: 0;
    }

    .faq-question__icon {
      flex-shrink: 0;
      width: 1.35rem;
      height: 1.35rem;
      margin-top: 0.1rem;
      position: relative;
    }

    .faq-question__icon::before,
    .faq-question__icon::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      background: var(--orange);
      border-radius: 1px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .faq-question__icon::before {
      width: 0.75rem;
      height: 2px;
      transform: translate(-50%, -50%);
    }

    .faq-question__icon::after {
      width: 2px;
      height: 0.75rem;
      transform: translate(-50%, -50%);
    }

    .faq-item.is-open .faq-question__icon::after {
      transform: translate(-50%, -50%) scaleY(0);
      opacity: 0;
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.28s ease;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
    }

    .faq-item.is-open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer__inner {
      overflow: hidden;
    }

    .faq-item.is-open .faq-answer__inner {
      padding-bottom: 1.25rem;
    }

    .faq-answer[aria-hidden="true"] .faq-answer__inner {
      pointer-events: none;
    }

    .faq-answer a {
      color: var(--deep-mid);
      font-weight: 500;
      text-decoration: underline;
      text-decoration-color: var(--blue-glow);
      text-underline-offset: 2px;
    }

    .faq-answer a:hover {
      color: var(--ember);
    }

    .faq-answer p + p { margin-top: 0.75rem; }

    .faq-cta {
      margin-top: 2.5rem;
      padding: 1.75rem;
      border-radius: 10px;
      background: var(--surface);
      border: 1px solid var(--border-grey);
      text-align: center;
    }

    .faq-cta p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .faq-cta-extra {
      margin-top: 1rem;
      margin-bottom: 0;
      font-size: 0.88rem;
      color: var(--deep-mid);
      font-weight: 500;
    }

    .btn-primary {
      display: inline-block;
      background: linear-gradient(180deg, var(--orange-mid) 0%, var(--orange) 100%);
      color: var(--white);
      padding: 0.75rem 1.75rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      border: 1px solid var(--orange-dark);
      box-shadow: 0 2px 8px rgba(var(--shadow-rgb), 0.08);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      background: linear-gradient(180deg, var(--accent) 0%, var(--orange-dark) 100%);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(var(--shadow-rgb), 0.1);
    }

    button.btn-primary {
      font-family: inherit;
      border: none;
      cursor: pointer;
    }

    /* ── CONTACT MODAL ── */
