    /* ══════════════════════════════════════════════
       PAGE HERO
    ══════════════════════════════════════════════ */
    .services-hero {
      position: relative;
      background: var(--navy-dark);
      padding: 100px 0 72px;
      overflow: hidden;
    }
    .services-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 70% at 100% 50%, rgba(15,110,86,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 0% 80%,  rgba(60,52,137,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .services-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200,148,26,0.35), transparent);
    }
    .services-hero .container { position: relative; z-index: 1; }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px; height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }
    .services-hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
      max-width: 700px;
    }
    .services-hero h1 em { font-style: italic; color: var(--gold-light); }
    .services-hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      max-width: 540px;
      line-height: 1.75;
      margin-bottom: 40px;
    }
    .brand-nav { display: flex; gap: 10px; flex-wrap: wrap; }
    .brand-nav-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 20px;
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.55);
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .brand-nav-pill--teal:hover { background: rgba(15,110,86,0.2); border-color: var(--teal); color: #4ecbaf; }
    .brand-nav-pill--purple:hover { background: rgba(60,52,137,0.25); border-color: var(--purple); color: #a89fff; }
    .pill-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .pill-dot--teal   { background: var(--teal); }
    .pill-dot--purple { background: var(--purple); }
    .hero-strip {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.08);
      flex-wrap: wrap;
    }
    .hero-strip-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--gold-light); line-height: 1; margin-bottom: 3px; }
    .hero-strip-stat span  { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
    .hero-strip-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

    /* ══════════════════════════════════════════════
       BRAND SECTION HEADERS
    ══════════════════════════════════════════════ */
    .brand-section { padding: 80px 0 64px; }
    .brand-section--teal   { background: var(--white); }
    .brand-section--yourfirm { background: var(--cream); }
    .brand-section-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }
    .brand-section-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 280px; }
    .brand-section-logo-wrap {
      width: 64px; height: 64px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .brand-section-logo-wrap--teal   { background: var(--teal); }
    .brand-section-logo-wrap--purple { background: var(--purple); }
    .brand-section-logo-wrap img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
    .brand-section-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
    .brand-section-eyebrow--teal   { color: var(--teal); }
    .brand-section-eyebrow--purple { color: var(--purple); }
    .brand-section-title-group h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0; }
    .brand-section-right { max-width: 380px; }
    .brand-section-right p { font-size: 0.92rem; line-height: 1.75; color: var(--warm-grey); }
    .brand-section-right a { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; margin-top: 12px; text-decoration: none; transition: gap 0.2s ease; }
    .brand-section-right a:hover { gap: 10px; }
    .link--teal   { color: var(--teal); }
    .link--purple { color: var(--purple); }

    /* ══════════════════════════════════════════════
       SERVICE CARDS
    ══════════════════════════════════════════════ */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .svc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
      cursor: pointer;
    }
    .svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .svc-card--teal:hover   { border-color: var(--teal); }
    .svc-card--purple:hover { border-color: var(--purple); }
    .svc-card-image-wrap { position: relative; overflow: hidden; height: 190px; }
    .svc-card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
    .svc-card:hover .svc-card-image-wrap img { transform: scale(1.06); }
    .svc-card-image-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(10,20,40,0.55) 100%);
    }
    .svc-card-icon {
      position: absolute; bottom: 14px; left: 18px; z-index: 2;
      width: 38px; height: 38px; border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem; backdrop-filter: blur(8px);
    }
    .svc-card-icon--teal   { background: rgba(15,110,86,0.75);  border: 1px solid rgba(15,110,86,0.6); }
    .svc-card-icon--purple { background: rgba(60,52,137,0.75);  border: 1px solid rgba(60,52,137,0.5); }
    .svc-card-body { padding: 22px 22px 0; }
    .svc-card-body h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
    .svc-card-body > p { font-size: 0.875rem; line-height: 1.7; color: var(--warm-grey); }
    .svc-card-toggle {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 22px 18px; margin-top: 14px;
      background: none; border: none; width: 100%;
      cursor: pointer; font-family: inherit;
      border-top: 1px solid var(--border);
      transition: background 0.2s ease;
    }
    .svc-card:hover .svc-card-toggle { background: var(--off-white); }
    .svc-card-toggle-label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
    .svc-card-toggle-icon {
      width: 28px; height: 28px; border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--warm-grey);
      transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
    .svc-card.expanded .svc-card-toggle-icon { transform: rotate(45deg); }
    .svc-card--teal.expanded   .svc-card-toggle-icon { background: var(--teal);   border-color: var(--teal);   color: var(--white); }
    .svc-card--purple.expanded .svc-card-toggle-icon { background: var(--purple); border-color: var(--purple); color: var(--white); }
    .svc-card-drawer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
    .svc-card.expanded .svc-card-drawer { max-height: 600px; }
    .svc-card-drawer-inner { padding: 0 22px 24px; border-top: 1px solid var(--border); }
    .svc-includes { margin-top: 16px; margin-bottom: 20px; }
    .svc-includes-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 10px; }
    .svc-includes ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .svc-includes ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.85rem; color: var(--navy); line-height: 1.5; }
    .svc-includes ul li::before { content: '✓'; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
    .svc-card--teal   .svc-includes ul li::before { color: var(--teal); }
    .svc-card--purple .svc-includes ul li::before { color: var(--purple); }
    .svc-drawer-cta { display: flex; gap: 10px; flex-wrap: wrap; }
    .svc-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 9px 18px; border-radius: var(--radius-sm);
      font-size: 0.82rem; font-weight: 600;
      text-decoration: none; transition: all 0.22s ease;
      border: 1.5px solid transparent; cursor: pointer; font-family: inherit;
    }
    .svc-btn--teal          { background: var(--teal);   color: var(--white); }
    .svc-btn--teal:hover    { background: var(--teal-light); transform: translateY(-1px); }
    .svc-btn--purple        { background: var(--purple); color: var(--white); }
    .svc-btn--purple:hover  { background: #4a42a8; transform: translateY(-1px); }
    .svc-btn--ghost-teal    { background: transparent; color: var(--teal);   border-color: var(--teal); }
    .svc-btn--ghost-teal:hover   { background: var(--teal);   color: var(--white); }
    .svc-btn--ghost-purple  { background: transparent; color: var(--purple); border-color: var(--purple); }
    .svc-btn--ghost-purple:hover { background: var(--purple); color: var(--white); }
    .svc-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

    /* ══════════════════════════════════════════════
       RETAINER BANNER
    ══════════════════════════════════════════════ */
    .retainer-banner { background: var(--navy-dark); padding: 64px 0; position: relative; overflow: hidden; }
    .retainer-banner::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 80% at 90% 50%, rgba(15,110,86,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 50%, rgba(60,52,137,0.12) 0%, transparent 60%);
    }
    .retainer-banner .container { position: relative; z-index: 1; }
    .retainer-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
    .retainer-inner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 10px; }
    .retainer-inner p  { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 520px; }
    .retainer-badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
    .retainer-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
    .retainer-badge--teal   { background: rgba(15,110,86,0.2);   color: #4ecbaf; border: 1px solid rgba(15,110,86,0.35); }
    .retainer-badge--purple { background: rgba(60,52,137,0.25);  color: #a89fff; border: 1px solid rgba(60,52,137,0.4); }
    .retainer-badge--gold   { background: rgba(200,148,26,0.15); color: var(--gold-light); border: 1px solid rgba(200,148,26,0.3); }
    .retainer-cta { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; min-width: 200px; align-items: center; }
    .retainer-cta a { width: 100%; justify-content: center; text-align: center; }
    .retainer-note { font-size: 0.75rem; color: rgba(255,255,255,0.25); text-align: center; }

    /* ══════════════════════════════════════════════
       QUOTE FORM SECTION
    ══════════════════════════════════════════════ */
    .quote-section {
      background: var(--navy-dark);
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    .quote-section::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 100% 0%, rgba(15,110,86,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(60,52,137,0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .quote-section .container { position: relative; z-index: 1; }
    .quote-section-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
    .quote-section-header .eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
    .quote-section-header h2 { color: var(--white); margin-bottom: 14px; }
    .quote-section-header p  { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

    /* Form card */
    .quote-form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      max-width: 860px;
      margin: 0 auto;
      box-shadow: 0 32px 80px rgba(0,0,0,0.35);
    }

    /* Form steps nav */
    .qf-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid var(--border);
    }
    .qf-step {
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-right: 1px solid var(--border);
      background: var(--off-white);
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .qf-step:last-child { border-right: none; }
    .qf-step.active { background: var(--white); }
    .qf-step-num {
      width: 26px; height: 26px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700;
      background: var(--border); color: var(--warm-grey);
      flex-shrink: 0; transition: all 0.25s ease;
    }
    .qf-step.active   .qf-step-num { background: var(--navy); color: var(--white); }
    .qf-step.complete .qf-step-num { background: var(--teal); color: var(--white); }
    .qf-step-label { font-size: 0.78rem; font-weight: 600; color: var(--warm-grey); line-height: 1.3; }
    .qf-step.active   .qf-step-label { color: var(--navy); }
    .qf-step.complete .qf-step-label { color: var(--teal); }

    /* Form body */
    .qf-body { padding: 36px 40px 40px; }

    .qf-section-title {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--warm-grey);
      margin-bottom: 20px; padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }

    /* Brand toggle */
    .qf-brand-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 28px; }
    .qf-brand-opt {
      border: 1.5px solid var(--border);
      border-radius: var(--radius-md);
      padding: 16px 16px;
      cursor: pointer;
      transition: all 0.22s ease;
      user-select: none;
    }
    .qf-brand-opt:hover { border-color: var(--navy); }
    .qf-brand-opt.selected--teal   { border-color: var(--teal);   background: rgba(15,110,86,0.05); }
    .qf-brand-opt.selected--purple { border-color: var(--purple); background: rgba(60,52,137,0.05); }
    .qf-brand-opt.selected--both   { border-color: var(--gold);   background: rgba(200,148,26,0.05); }
    .qf-brand-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 7px; }
    .qf-brand-dot--teal   { background: var(--teal); }
    .qf-brand-dot--purple { background: var(--purple); }
    .qf-brand-dot--gold   { background: var(--gold); }
    .qf-brand-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
    .qf-brand-sub  { font-size: 0.78rem; color: var(--warm-grey); }

    /* Service tags */
    .qf-tags-wrap { margin-bottom: 28px; }
    .qf-tags-label { font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
    .qf-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .qf-tag {
      padding: 6px 14px;
      border: 1.5px solid var(--border);
      border-radius: 100px;
      font-size: 0.8rem; font-weight: 500;
      color: var(--warm-grey);
      cursor: pointer;
      transition: all 0.2s ease;
      user-select: none;
    }
    .qf-tag:hover { border-color: var(--navy); color: var(--navy); }
    .qf-tag.selected--teal   { background: var(--teal);   border-color: var(--teal);   color: var(--white); }
    .qf-tag.selected--purple { background: var(--purple); border-color: var(--purple); color: var(--white); }

    /* Form rows */
    .qf-row   { display: grid; gap: 16px; margin-bottom: 16px; }
    .qf-row-2 { grid-template-columns: 1fr 1fr; }
    .qf-row-3 { grid-template-columns: 1fr 1fr 1fr; }
    .qf-field { display: flex; flex-direction: column; gap: 6px; }
    .qf-label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
    .qf-req   { color: var(--gold); margin-left: 2px; }
    .qf-field input,
    .qf-field select,
    .qf-field textarea {
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 0.9rem; font-family: inherit;
      color: var(--black); background: var(--white);
      outline: none; transition: var(--transition); width: 100%;
    }
    .qf-field input:focus,
    .qf-field select:focus,
    .qf-field textarea:focus {
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(26,60,94,0.08);
    }
    .qf-field textarea { resize: vertical; min-height: 110px; }
    .qf-field select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      cursor: pointer;
    }

    /* Checkboxes */
    .qf-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .qf-check-row {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 14px 16px;
      background: var(--off-white);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: border-color 0.2s ease;
    }
    .qf-check-row:hover { border-color: var(--navy); }
    .qf-check-row input[type="checkbox"] { margin-top: 2px; cursor: pointer; flex-shrink: 0; accent-color: var(--navy); width: 16px; height: 16px; }
    .qf-check-text strong { display: block; font-size: 0.88rem; color: var(--navy); margin-bottom: 2px; }
    .qf-check-text span   { font-size: 0.8rem; color: var(--warm-grey); }

    /* Form footer */
    .qf-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 24px; border-top: 1px solid var(--border);
      flex-wrap: wrap; gap: 16px;
    }
    .qf-footer-note { font-size: 0.8rem; color: var(--warm-grey); line-height: 1.6; }
    .qf-footer-note strong { color: var(--navy); font-weight: 600; }
    .qf-submit {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 32px;
      background: var(--navy); color: var(--white);
      border: none; border-radius: var(--radius-sm);
      font-size: 0.95rem; font-weight: 700;
      font-family: inherit; cursor: pointer;
      transition: all 0.25s ease;
      flex-shrink: 0;
    }
    .qf-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .qf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    /* Success state */
    .qf-success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 64px 40px;
      gap: 16px;
    }
    .qf-success.visible { display: flex; }
    .qf-success-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(15,110,86,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
    }
    .qf-success h3 { font-size: 1.4rem; color: var(--navy); }
    .qf-success p  { color: var(--warm-grey); max-width: 400px; }

    /* Error message */
    .qf-error {
      display: none;
      background: rgba(200,50,50,0.08);
      border: 1px solid rgba(200,50,50,0.2);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      font-size: 0.85rem;
      color: #c83232;
      margin-bottom: 16px;
    }
    .qf-error.visible { display: block; }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .brand-section-header { flex-direction: column; gap: 20px; }
      .brand-section-right { max-width: 100%; }
      .qf-row-3 { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .services-hero { padding: 80px 0 56px; }
      .services-grid { grid-template-columns: 1fr; }
      .retainer-inner { grid-template-columns: 1fr; gap: 32px; }
      .retainer-cta { align-items: flex-start; }
      .hero-strip-divider { display: none; }
      .qf-steps { grid-template-columns: repeat(2, 1fr); }
      .qf-body  { padding: 24px 20px 28px; }
      .qf-brand-grid { grid-template-columns: 1fr; }
      .qf-row-2 { grid-template-columns: 1fr; }
      .qf-row-3 { grid-template-columns: 1fr; }
      .qf-footer { flex-direction: column; align-items: flex-start; }
      .qf-submit { width: 100%; justify-content: center; }
    }
    @media (max-width: 480px) {
      .brand-section-left { flex-direction: column; align-items: flex-start; gap: 14px; }
      .qf-steps { grid-template-columns: repeat(2, 1fr); }
    }
