/* ============================================================
   Wuthqa — Service landing page styles (ServicePage.jsx, v3)
   Builds on the shared tokens (colors_and_type.css).
   Section order: Hero · Overview · Who we help · Process · Why ·
   Stats · Red banner · Results · Industries · Team · FAQs ·
   Related · Form. Light sections auto-alternate #fff / surface.
   ============================================================ */

/* ---- Hero ------------------------------------------------------- */
/* Fills the first screen like the home hero (118px = utility bar + nav);
   content centers in the leftover space and the marquee bar hugs the fold. */
.wq-svc-hero { position: relative; background-size: cover; background-position: center;
  padding: clamp(48px, 6vh, 90px) 0 0; color: #fff; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: calc(100vh - 118px); min-height: calc(100dvh - 118px); }
.wq-svc-hero-inner { max-width: var(--container); width: 100%; margin: auto; padding: 0 32px clamp(24px, 4vw, 48px); }
@media (max-height: 660px) { .wq-svc-hero { min-height: 0; padding-top: 96px; } }
.wq-svc-hero .wq-crumb2 { display: flex; align-items: center; gap: 8px; font-size: 12.5px;
  color: rgba(255, 255, 255, .5); margin-bottom: 22px; }
.wq-svc-hero .wq-crumb2 a { color: rgba(255, 255, 255, .62); text-decoration: none; }
.wq-svc-hero .wq-crumb2 a:hover { color: var(--gold); }
.wq-svc-hero .wq-crumb2 .cur { color: var(--gold); }
.wq-svc-hero-h1 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; color: #fff;
  font-size: clamp(32px, 4.8vw, 56px); line-height: 1.1; letter-spacing: -.01em; margin: 0; max-width: 17ch; }
.wq-svc-hero-sub { font-size: clamp(16px, 1.7vw, 18.5px); line-height: 1.75; color: rgba(255, 255, 255, .8);
  margin: 22px 0 0; max-width: 60ch; }
.wq-svc-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* credential marquee bar */
.wq-svc-bar { border-top: 1px solid rgba(200, 168, 75, .2); background: rgba(10, 9, 7, .55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.wq-svc-bar-track { display: flex; width: max-content; animation: wqSvcMarquee 42s linear infinite; }
.wq-svc-bar-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 15px 26px; font-family: var(--font-en); font-weight: 600; font-size: 13px;
  color: rgba(255, 255, 255, .82); }
.wq-svc-bar-item svg, .wq-svc-bar-item [data-lucide] { color: var(--gold); }
@keyframes wqSvcMarquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .wq-svc-bar-track { animation: none; } }

/* ---- Overview (title + gold rule on the left, golden box on the right,
       over a soft full-section photo background) ---------------------- */
/* Photo background for the whole section + a left-side white wash so the
   title stays crisp. Layered on ::after because a global rich-background
   rule already owns section::before. */
.wq-svc-ov-sec::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .55) 38%, rgba(255, 255, 255, .16) 70%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(rgba(255, 255, 255, .3), rgba(255, 255, 255, .3)),
    url('/assets/sections/services-overview-background.jpg') center / cover no-repeat; }
.wq-svc-ov { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 64px);
  align-items: center; max-width: 1080px; margin: 0 auto; }
.wq-svc-ov-head { position: relative; padding-left: 24px; }
.wq-svc-ov-head::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px;
  border-radius: 3px; background: linear-gradient(var(--gold), var(--gold-600)); }
.wq-svc-ov-kicker { display: inline-block; font-family: var(--font-en); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); margin: 0 0 15px; }
.wq-svc-ov-title { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600;
  font-size: clamp(24px, 3vw, 37px); line-height: 1.2; letter-spacing: -.01em; color: var(--teal); margin: 0; }
.wq-svc-ov-box { background: var(--gold); border: 1px solid var(--gold-600); border-radius: var(--r-xl);
  padding: clamp(28px, 3.2vw, 44px); box-shadow: 0 28px 60px -38px rgba(120, 92, 24, .5); }
.wq-svc-ov-box p { color: #fff; font-size: 15.5px; line-height: 1.8; margin: 0 0 15px; }
.wq-svc-ov-box p:last-of-type { margin-bottom: 0; }
/* jump-to-section link — styled as a clear pill so it reads as clickable
   against the gold box (was plain white text, easy to miss) */
.wq-svc-ov-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--font-en); font-weight: 600; font-size: 14px; color: #fff;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .6); border-radius: var(--r-full);
  padding: 11px 22px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.wq-svc-ov-link:hover { background: #fff; color: var(--gold-600); border-color: #fff; transform: translateY(-2px); }
.wq-svc-ov-link:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.wq-svc-ov-link svg, .wq-svc-ov-link [data-lucide] { transition: transform .25s var(--ease); }
.wq-svc-ov-link:hover svg, .wq-svc-ov-link:hover [data-lucide] { transform: translateY(3px); }

/* ---- Who we help — split layout: sticky header + CTA on the left,
   staggered points scrolling through on the right ------------------ */
.wq-svc-who { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.wq-svc-who-side { position: sticky; top: 128px; }
.wq-svc-who-side .wq-head { margin: 0 0 30px; }
.wq-svc-who-side .wq-btn { margin: 0; }
.wq-svc-who-main .wq-svc-hlist { max-width: none; margin: 0; }
/* grouped variant: inside the split, the audience label stacks above its cards
   (its own inner sticky column would fight the sticky header) */
.wq-svc-who-main .wq-svc-group { grid-template-columns: 1fr; gap: 20px; }
.wq-svc-who-main .wq-svc-group-head { position: static; }
.wq-svc-who-main .wq-svc-group-intro { max-width: 52ch; }

/* staggered vertical list; each card a pill with a gold icon tab */
.wq-svc-hlist { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 34px; }
.wq-svc-hcard { position: relative; display: flex; align-items: stretch; width: 86%; min-height: 92px;
  background: #fff; border-radius: 18px; box-shadow: 0 20px 30px -14px rgba(20, 18, 12, .26);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.wq-svc-hcard.l { margin-right: auto; }
.wq-svc-hcard.r { flex-direction: row-reverse; margin-left: auto; text-align: right; }
.wq-svc-hcard:hover { transform: translateY(-3px); box-shadow: 0 26px 38px -14px rgba(20, 18, 12, .34); }
/* the gold tab: full-height rounded block, icon centred — its inner rounded
   corners reveal the white card behind it, giving the layered look */
.wq-svc-hcard-ic { flex: 0 0 92px; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #17140f; border-radius: 18px; box-shadow: 0 10px 18px -8px rgba(200, 168, 75, .6); }
.wq-svc-hcard-body { flex: 1 1 auto; padding: 18px 26px; display: flex; flex-direction: column; justify-content: center; }
.wq-svc-hcard-t { color: var(--teal); font-weight: 700; font-size: 16px; line-height: 1.3; }
.wq-svc-hcard-d { color: var(--fg-2); font-size: 13px; line-height: 1.55; margin: 6px 0 0; }
/* short gold connector tick above each card */
.wq-svc-hcard::before { content: ''; position: absolute; top: -22px; width: 3px; height: 18px;
  background: var(--gold); border-radius: 2px; }
.wq-svc-hcard.l::before { left: 46px; }
.wq-svc-hcard.r::before { right: 46px; }

/* grouped by audience (For Businesses / Individuals / Creditors …) */
.wq-svc-groups { display: flex; flex-direction: column; }
.wq-svc-group { display: grid; grid-template-columns: 210px 1fr; gap: clamp(20px, 3vw, 40px);
  align-items: start; padding: 36px 0; border-top: 1px solid var(--border); }
.wq-svc-group:first-child { border-top: none; padding-top: 8px; }
.wq-svc-group:last-child { padding-bottom: 4px; }
.wq-svc-group-head { position: sticky; top: 116px; }
.wq-svc-group-label { display: flex; align-items: center; gap: 11px;
  font-family: var(--font-en); font-weight: 700; font-size: 17px; color: var(--teal); }
.wq-svc-group-dot { width: 9px; height: 9px; border-radius: var(--r-full); background: var(--gold);
  flex-shrink: 0; box-shadow: 0 0 0 4px var(--gold-tint); }
.wq-svc-group-intro { margin: 11px 0 0; color: var(--fg-3); font-size: 13px; line-height: 1.55; max-width: 26ch; }
.wq-svc-group .wq-svc-hlist { max-width: none; margin: 0; }

.wq-svc-center { display: flex; justify-content: center; margin-top: 44px; }
.wq-svc-center .wq-btn { margin: 0; }

/* ---- Process — box-less icon/label columns joined by thin gold chevrons */
.wq-svc-flow { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; gap: 6px 0; }
.wq-svc-flow-step { flex: 1 1 0; min-width: 128px; max-width: 190px; padding: 4px 14px 0; text-align: center; }
.wq-svc-flow-ic { display: flex; align-items: center; justify-content: center; height: 30px; color: var(--teal); margin-bottom: 14px; }
.wq-svc-flow-ic svg, .wq-svc-flow-ic [data-lucide] { stroke-width: 1.5; }
.wq-svc-flow-t { color: var(--teal); font-family: var(--font-en); font-weight: 700; font-size: 13.5px;
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.3; }
.wq-svc-flow-d { color: var(--fg-2); font-size: 12.5px; line-height: 1.6; margin: 10px 0 0; }
/* solid gold chevron, vertically centred on the icon row (height + margin-top
   match the step's icon glyph so the arrow lines up with the icons, not the text) */
.wq-svc-flow-arrow { flex: 0 0 auto; width: clamp(38px, 4.5vw, 60px); align-self: flex-start;
  height: 30px; margin-top: 4px; display: flex; align-items: center; justify-content: center; }
.wq-svc-flow-chev { width: 22px; height: 26px; fill: var(--gold); display: block; }

/* ---- Why choose (dark split: header + CTA left, points + stats right) - */
.wq-svc-why { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
/* flowing-line waves backdrop (same as home "Areas of Practice"), weighted
   to the left and faded out before the points on the right */
.wq-svc-why-waves { position: absolute; top: -24%; bottom: -24%; height: 148%;
  left: 50%; transform: translateX(-50%); width: 100vw; z-index: 0; pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 32%, transparent 50%);
          mask-image: linear-gradient(90deg, #000 0%, #000 32%, transparent 50%); }
.wq-svc-why-waves path { fill: none; stroke: rgba(200, 168, 75, .2); stroke-width: .6; }
.wq-svc-why-head, .wq-svc-why-body { position: relative; z-index: 1; }
.wq-svc-why-head .wq-btn { margin-top: 28px; }
.wq-svc-why-points { display: flex; flex-direction: column; gap: 20px; }
.wq-svc-why-point { display: flex; gap: 15px; align-items: flex-start; }
.wq-svc-why-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: var(--r-full);
  display: inline-flex; align-items: center; justify-content: center; background: var(--gold-tint); color: var(--gold); }
.wq-svc-why-t { color: #fff; font-weight: 600; font-size: 17px; }
.wq-svc-why-d { color: rgba(255, 255, 255, .68); font-size: 14.5px; line-height: 1.65; margin: 4px 0 0; }
/* the 3 stats, folded in under the points */
.wq-svc-why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
  padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, .13); }
.wq-svc-why-stat-v { font-family: var(--font-en); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); line-height: 1;
  color: var(--gold); letter-spacing: -.02em; }
.wq-svc-why-stat-l { color: rgba(255, 255, 255, .58); font-size: 12.5px; margin-top: 8px; line-height: 1.45; }

/* ---- Red banner (mid-page CTA) ---------------------------------- */
.wq-svc-banner { position: relative; overflow: hidden; color: #fff; background-color: #6d130d;
  background-image:
    radial-gradient(120% 140% at 85% -20%, rgba(216, 56, 46, .42), transparent 58%),
    linear-gradient(115deg, rgba(143, 25, 18, .9) 0%, rgba(109, 19, 13, .91) 55%, rgba(76, 12, 12, .94) 100%),
    url('/assets/heroes/banner-riyadh.jpg');
  background-size: cover, cover, cover; background-position: center, center, center; background-repeat: no-repeat; }
.wq-svc-banner::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url('/assets/brand/mark-spiral.png') no-repeat right -70px center / 360px; opacity: .07; }
.wq-svc-banner-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto;
  padding: clamp(56px, 8vw, 90px) 32px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.wq-svc-banner-title { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px); line-height: 1.18; letter-spacing: -.01em; margin: 0; max-width: 20ch; color: #fff; }
.wq-svc-banner-text { font-size: 16.5px; line-height: 1.75; color: rgba(255, 255, 255, .85); margin: 18px 0 0; max-width: 62ch; }
.wq-svc-banner-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.wq-svc-banner-call { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-family: var(--font-en);
  font-weight: 600; font-size: 15px; text-decoration: none; padding: 12px 20px; border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--r-full); transition: background .25s var(--ease), border-color .25s var(--ease); }
.wq-svc-banner-call:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.wq-svc-banner-call svg, .wq-svc-banner-call [data-lucide] { color: #fff; }

/* ---- Stats (light band, divided) -------------------------------- */
.wq-svc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.wq-svc-stat { text-align: center; padding: 0 12px; position: relative; }
.wq-svc-stat + .wq-svc-stat::before { content: ''; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: var(--border); }
.wq-svc-stat-v { font-family: var(--font-en); font-weight: 700; font-size: clamp(38px, 5vw, 56px); line-height: 1;
  color: var(--gold-600); letter-spacing: -.02em; }
.wq-svc-stat-l { color: var(--fg-2); font-size: 15px; margin-top: 10px; }

/* ---- Achievements (bold stat + work cards) ---------------------- */
.wq-svc-ach { display: grid; gap: 18px; max-width: 1060px; margin: 0 auto; }
.wq-svc-ach.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wq-svc-ach.cols-4 { grid-template-columns: repeat(4, 1fr); }
.wq-svc-ach-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.wq-svc-ach-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wq-svc-ach-v { font-family: var(--font-en); font-weight: 700; font-size: clamp(30px, 3.4vw, 42px); line-height: 1;
  color: var(--gold-600); letter-spacing: -.02em; }
.wq-svc-ach-ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: var(--r-full); background: var(--gold-tint); color: var(--gold); }
.wq-svc-ach-t { color: var(--teal); font-weight: 700; font-size: 15.5px; margin-top: 14px; line-height: 1.3; }
.wq-svc-ach-d { color: var(--fg-2); font-size: 13px; line-height: 1.6; margin: 9px 0 0; }

/* ---- Case results / testimonials -------------------------------- */
.wq-svc-tsts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px 30px; }
/* dark card with one big rounded (top-right) corner + gold quote marks */
.wq-svc-tst { position: relative; margin: 0; background: #17130e; padding: 34px 30px 30px;
  border-radius: 16px 44% 16px 16px / 16px 52% 16px 16px; display: flex; flex-direction: column;
  min-height: 300px; box-shadow: 0 26px 40px -20px rgba(20, 16, 10, .45); }
.wq-svc-tst-qo, .wq-svc-tst-qc { position: absolute; font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; color: var(--gold); line-height: .8; pointer-events: none; }
.wq-svc-tst-qo { top: -28px; left: 14px; font-size: 92px; }
.wq-svc-tst-qc { bottom: -50px; right: 16px; font-size: 92px; }
.wq-svc-tst-name { color: #fff; font-weight: 700; font-size: 19px; letter-spacing: .01em; margin-bottom: 16px; }
.wq-svc-tst blockquote { margin: 0 0 22px; color: rgba(255, 255, 255, .9); font-size: 14.5px; line-height: 1.7;
  flex: 1 1 auto; }
.wq-svc-tst-stars { color: var(--gold); font-size: 17px; letter-spacing: 4px; margin-top: auto; }
.wq-svc-tst-role { color: rgba(255, 255, 255, .5); font-size: 12px; letter-spacing: .04em; margin-top: 12px; }

/* ---- Industries ------------------------------------------------- */
.wq-svc-inds { position: relative; left: 50%; transform: translateX(-50%); width: 100vw; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.wq-svc-inds-track { display: flex; width: max-content; padding: 6px 0; animation: wqSvcMarquee 48s linear infinite; }
.wq-svc-inds:hover .wq-svc-inds-track { animation-play-state: paused; }
.wq-svc-ind { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; margin: 0 7px;
  font-family: var(--font-en); font-weight: 600; font-size: 14px; color: var(--teal); background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-full); padding: 9px 18px; }
.wq-svc-ind svg, .wq-svc-ind [data-lucide] { color: var(--gold); flex-shrink: 0; }
/* compact section: tighter gap between the head and the marquee
   (the head's margin is inline, hence the !important) */
#industries .wq-head { margin-bottom: 24px !important; }
@media (prefers-reduced-motion: reduce) { .wq-svc-inds-track { animation: none; } }

/* ---- Meet the team ---------------------------------------------- */
.wq-svc-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.wq-svc-tm { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 16px 18px; text-decoration: none;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.wq-svc-tm:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.wq-svc-tm-photo { flex-shrink: 0; width: 72px; height: 72px; border-radius: var(--r-full);
  background-size: cover; background-position: center; background-color: var(--surface); }
.wq-svc-tm-info { display: flex; flex-direction: column; min-width: 0; }
.wq-svc-tm-name { color: var(--teal); font-weight: 700; font-size: 15.5px; }
.wq-svc-tm-role { color: var(--fg-3); font-size: 13px; margin-top: 2px; }
.wq-svc-tm-link { display: inline-flex; align-items: center; gap: 5px; color: var(--gold-600);
  font-family: var(--font-en); font-size: 12.5px; font-weight: 600; margin-top: 9px; }
.wq-svc-tm:hover .wq-svc-tm-link { color: var(--gold); }

/* ---- FAQs ------------------------------------------------------- */
.wq-svc-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.wq-svc-faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .3s var(--ease); }
.wq-svc-faq-item.open { border-color: var(--gold); }
.wq-svc-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: start;
  font-family: inherit; font-weight: 600; font-size: 16px; color: var(--teal); }
.wq-svc-faq-q svg, .wq-svc-faq-q [data-lucide] { color: var(--gold); flex-shrink: 0; }
.wq-svc-faq-a { overflow: hidden; transition: max-height .3s var(--ease); }
.wq-svc-faq-a p { margin: 0; padding: 0 22px 20px; color: var(--fg-2); font-size: 14.5px; line-height: 1.7; }

/* ---- Meet the team + FAQs — combined dark two-column section ----- */
.wq-svc-tf { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.wq-svc-tf.single { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
/* team column — lawyer cards stacked vertically */
.wq-svc-tf-list { display: flex; flex-direction: column; gap: 14px; }
.wq-svc-tf-tm { display: flex; align-items: center; gap: 18px; padding: 14px 16px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.wq-svc-tf-tm:hover { background: rgba(255, 255, 255, .07); border-color: rgba(200, 168, 75, .5); transform: translateX(4px); }
.wq-svc-tf-tm-photo { flex: 0 0 64px; width: 64px; height: 64px; border-radius: var(--r-full);
  background-size: cover; background-position: center; background-color: #26231c; }
.wq-svc-tf-tm-info { display: flex; flex-direction: column; min-width: 0; }
.wq-svc-tf-tm-name { color: #fff; font-weight: 700; font-size: 16px; }
.wq-svc-tf-tm-role { color: rgba(255, 255, 255, .6); font-size: 13px; margin-top: 2px; }
.wq-svc-tf-tm-link { display: inline-flex; align-items: center; gap: 5px; color: var(--gold-600);
  font-family: var(--font-en); font-weight: 600; font-size: 12.5px; margin-top: 8px; }
.wq-svc-tf-tm:hover .wq-svc-tf-tm-link { color: var(--gold); }
/* faq column — accordion on dark */
.wq-svc-tf-faq { display: flex; flex-direction: column; gap: 12px; }
.wq-svc-tf-faq-item { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg); overflow: hidden; }
.wq-svc-tf-faq-item.open { border-color: rgba(200, 168, 75, .5); }
.wq-svc-tf-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; padding: 17px 20px; cursor: pointer; text-align: left;
  font-family: var(--font-en); font-weight: 600; font-size: 15px; color: #fff; }
.wq-svc-tf-faq-q svg, .wq-svc-tf-faq-q [data-lucide] { color: var(--gold); flex-shrink: 0; }
.wq-svc-tf-faq-a { overflow: hidden; transition: max-height .3s var(--ease); }
.wq-svc-tf-faq-a p { margin: 0; padding: 0 20px 18px; color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.7; }

/* ---- Related resources ------------------------------------------ */
.wq-svc-rel { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: start;
  max-width: 1040px; margin: 0 auto; }
.wq-svc-rel-blogs { display: flex; flex-direction: column; gap: 16px; }
.wq-svc-rel-blog { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 24px; text-decoration: none;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.wq-svc-rel-blog:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.wq-svc-rel-tag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-en); font-weight: 700;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); }
.wq-svc-rel-tag svg, .wq-svc-rel-tag [data-lucide] { color: var(--gold-600); }
.wq-svc-rel-blog-t { color: var(--teal); font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; font-size: 18px; line-height: 1.35; }
.wq-svc-rel-more { display: inline-flex; align-items: center; gap: 6px; color: var(--fg-3); font-family: var(--font-en);
  font-size: 13px; font-weight: 600; transition: gap .25s var(--ease), color .25s var(--ease); }
.wq-svc-rel-blog:hover .wq-svc-rel-more { color: var(--gold); gap: 9px; }
.wq-svc-rel-more svg, .wq-svc-rel-more [data-lucide] { color: currentColor; }
.wq-svc-rel-svcs-h { font-family: var(--font-en); font-weight: 700; font-size: 12.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 14px; }
.wq-svc-rel-svcs-list { display: flex; flex-direction: column; gap: 10px; }
.wq-svc-rel-svc { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 13px 15px; text-decoration: none; color: var(--teal); font-weight: 600; font-size: 14.5px;
  transition: border-color .25s var(--ease), background .25s var(--ease); }
.wq-svc-rel-svc:hover { border-color: var(--gold); background: var(--gold-tint); }
.wq-svc-rel-svc-ic { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: var(--r-md); background: var(--gold-tint); color: var(--gold-600); flex-shrink: 0; }
.wq-svc-rel-svc-name { flex: 1 1 auto; }
.wq-svc-rel-svc > svg:last-child, .wq-svc-rel-svc > [data-lucide]:last-child { color: var(--gold-600); }

/* ---- Closing CTA + form ----------------------------------------- */
.wq-svc-cta { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.wq-svc-cta-text { color: rgba(255, 255, 255, .76); font-size: 16px; line-height: 1.8; margin: 0 0 22px; max-width: 46ch; }
.wq-svc-cta-btns { display: flex; flex-direction: column; gap: 12px; }
.wq-svc-cta-mini { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 15px; font-weight: 600; text-decoration: none; }
.wq-svc-cta-mini svg, .wq-svc-cta-mini [data-lucide] { color: var(--gold); }
.wq-svc-cta-mini:hover { color: var(--gold); }
.wq-svc-form-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-xl); padding: clamp(24px, 3vw, 34px); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.wq-svc-form-card .wq-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wq-svc-form-card input, .wq-svc-form-card textarea, .wq-svc-select {
  width: 100%; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-md); padding: 12px 14px; color: #fff; font-family: inherit; font-size: 14.5px; margin-bottom: 12px; }
.wq-svc-form-card input::placeholder, .wq-svc-form-card textarea::placeholder { color: rgba(255, 255, 255, .5); }
.wq-svc-form-card input:focus, .wq-svc-form-card textarea:focus, .wq-svc-select:focus {
  outline: none; border-color: var(--gold); background: rgba(255, 255, 255, .09); }
.wq-svc-form-card .wq-field-row input { margin-bottom: 0; }
.wq-svc-form-card textarea { min-height: 110px; resize: vertical; }
.wq-svc-select { color: rgba(255, 255, 255, .85); }
.wq-svc-select option { color: #111; }
.wq-svc-agree { display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, .72); font-size: 13.5px; margin: 4px 0 16px; }
.wq-svc-agree input { width: 16px; height: 16px; }
.wq-svc-form-card .wq-btn { width: 100%; justify-content: center; }
.wq-svc-form-sent { text-align: center; padding: 20px 6px; }
.wq-svc-form-sent h3 { color: #fff; margin: 12px 0 8px; font-size: 20px; }
.wq-svc-form-sent p { color: rgba(255, 255, 255, .72); font-size: 14.5px; line-height: 1.7; margin: 0 0 16px; }

/* ---- Responsive ------------------------------------------------- */
@media (max-width: 980px) {
  .wq-svc-who { grid-template-columns: 1fr; gap: 34px; }
  .wq-svc-who-side { position: static; }
  .wq-svc-hlist .wq-svc-hcard { width: 92%; }
  .wq-svc-ach.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .wq-svc-why { grid-template-columns: 1fr; gap: 30px; }
  .wq-svc-tf { grid-template-columns: 1fr; gap: 40px; }
  .wq-svc-tsts { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .wq-svc-team { grid-template-columns: 1fr; max-width: 460px; }
  .wq-svc-cta { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .wq-svc-ov { grid-template-columns: 1fr; gap: 24px; }
  .wq-svc-ov-sec::after { background: rgba(255, 255, 255, .72); }
  .wq-svc-group { grid-template-columns: 1fr; gap: 18px; }
  .wq-svc-group-head { position: static; top: auto; }
  .wq-svc-group-intro { max-width: none; }
  .wq-svc-rel { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  /* Stack the process flow vertically; chevrons point down. */
  .wq-svc-flow { flex-direction: column; align-items: center; }
  .wq-svc-flow-step { width: 100%; max-width: 360px; }
  .wq-svc-flow-arrow { align-self: center; width: auto; height: auto; margin: 6px 0; }
  .wq-svc-flow-chev { transform: rotate(90deg); width: 26px; height: 30px; }
}
@media (max-width: 560px) {
  .wq-svc-hcard, .wq-svc-hcard.l, .wq-svc-hcard.r { width: 100%; margin: 0; }
  .wq-svc-ach.cols-3, .wq-svc-ach.cols-4 { grid-template-columns: minmax(0, 400px); justify-content: center; }
  .wq-svc-stats { grid-template-columns: 1fr; gap: 30px; }
  .wq-svc-stat + .wq-svc-stat::before { display: none; }
  .wq-svc-form-card .wq-field-row { grid-template-columns: 1fr; gap: 0; }
  .wq-svc-form-card .wq-field-row input { margin-bottom: 12px; }
}
