/* QXT Design Tokens + Reset + Base + Components */

:root {
  /* Brand */
  --gold: #B8842C;
  --bronze: #8B5A1F;
  --gold-soft: #E9CB89;
  --cream: #FBFAF7;
  --bone: #FFFFFF;

  /* Neutrals */
  --ink: #18181B;
  --slate: #52525B;
  --mute: #71717A;
  --border: #E5E7EB;
  --hairline: #F1F5F9;

  /* Functional */
  --whatsapp: #25D366;
  --whatsapp-shadow: rgba(37,211,102,0.45);

  /* Type */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radii */
  --r-btn: 2px; --r-card: 4px; --r-box: 8px; --r-full: 9999px;

  /* Shadows */
  --sh-floating: 0 8px 20px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.06);
  --sh-card-hover: 0 8px 16px rgba(0,0,0,0.06);

  /* Container */
  --max-w: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: white; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-7) 0; }

/* Typography */
h1, h2, h3, h4 { margin: 0 0 var(--s-3); letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(22px, 3vw, 32px); line-height: 1.15; }
h3 { font-size: clamp(16px, 2vw, 20px); line-height: 1.3; }
p { margin: 0 0 var(--s-4); line-height: 1.6; color: var(--slate); }
.eyebrow { display: none; }
.label-mute { font-size: 10px; letter-spacing: 0.15em; color: var(--mute); text-transform: uppercase; font-weight: 700; }

/* Nav moved to site-chrome.css (single source for nav + footer). */

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--bone); padding: var(--s-9) 0 var(--s-9); }
.hero-swoosh { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { color: var(--ink); margin-bottom: var(--s-4); }
.hero p { font-size: clamp(15px, 1.4vw, 17px); color: var(--slate); margin-bottom: var(--s-5); max-width: 600px; }
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* Homepage workstream tabs */
.qxt-feature-tabs-section { background: white; padding-top: var(--s-8); }
.qxt-feature-head {
  max-width: 760px;
  margin: 0 auto var(--s-6);
  text-align: center;
}
.qxt-feature-head .label-mute {
  display: block;
  margin-bottom: var(--s-2);
  color: var(--bronze);
}
.qxt-feature-head h2 {
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.06;
  margin-bottom: var(--s-4);
}
.qxt-feature-head p {
  font-size: 15px;
  margin: 0 auto;
  max-width: 680px;
}
.qxt-feature-tabs {
  border: 1px solid var(--border);
  border-radius: var(--r-box);
  background: var(--bone);
  padding: var(--s-5);
}
.qxt-feature-tablist {
  display: flex;
  justify-content: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}
.qxt-feature-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  border: 1px solid transparent;
  border-radius: var(--r-box);
  background: transparent;
  color: var(--mute);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.qxt-feature-tab:hover,
.qxt-feature-tab:focus {
  color: var(--ink);
  outline: none;
  border-color: var(--gold-soft);
}
.qxt-feature-tab.active {
  background: white;
  border-color: var(--gold-soft);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(24,24,27,0.05);
}
.qxt-feature-tab-icon {
  display: inline-flex;
  color: var(--bronze);
}
.qxt-feature-tab-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.qxt-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: var(--s-7);
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-box);
  padding: var(--s-7);
}
.qxt-feature-panel[hidden] { display: none; }
.qxt-feature-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--gold-soft);
  border-radius: var(--r-full);
  background: var(--cream);
  color: var(--bronze);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.qxt-feature-copy h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: var(--s-4);
}
.qxt-feature-copy p {
  font-size: 15px;
  margin-bottom: var(--s-5);
  max-width: 560px;
}
.qxt-feature-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--r-box);
  overflow: hidden;
  background: linear-gradient(145deg, var(--bone), var(--cream));
  border: 1px solid var(--border);
}
.qxt-feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.qxt-feature-proof {
  position: absolute;
  left: var(--s-4);
  right: var(--s-4);
  bottom: var(--s-4);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--s-4);
  box-shadow: 0 10px 26px rgba(24,24,27,0.08);
}
.qxt-feature-proof strong,
.qxt-document-stack strong {
  display: block;
  color: var(--ink);
  margin-bottom: 3px;
  font-size: 14px;
}
.qxt-feature-proof span,
.qxt-document-stack span {
  color: var(--mute);
  font-size: 12px;
  line-height: 1.45;
}
/* Breadcrumb */
.breadcrumb { font-size: 12px; color: var(--mute); padding: var(--s-3) 0; }
.breadcrumb a { color: var(--mute); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--bronze); }
.breadcrumb span { margin: 0 var(--s-2); }

/* Buttons */
.btn { display: inline-block; padding: 12px 20px; font-size: 13px; font-weight: 600; border-radius: var(--r-btn); border: 1px solid transparent; transition: all 0.2s; cursor: pointer; line-height: 1; }
.btn-primary { background: var(--ink); color: white; border-color: var(--ink); }
.btn-primary:hover { background: var(--bronze); border-color: var(--bronze); }
.btn-secondary { background: white; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--bone); }
.btn-gold { background: var(--gold); color: white; border-color: var(--gold); }
.btn-gold:hover { background: var(--bronze); border-color: var(--bronze); }
.btn-large { padding: 14px 24px; font-size: 14px; }

/* Tiles grid - desktop default uses auto-fill but per-count overrides force balanced rows.
   :has() is supported in all modern browsers (Chrome 105+, Safari 15.4+, Firefox 121+). */
.tiles { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

@media (min-width: 1024px) {
  /* 3 tiles: 3 in 1 row */
  .tiles:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }
  /* 4 tiles: 4 in 1 row */
  .tiles:has(> :nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
  /* 5 tiles: 3 + 2 (top row full) */
  .tiles:has(> :nth-child(5):last-child) { grid-template-columns: repeat(3, 1fr); }
  /* 6 tiles: 3 + 3 balanced */
  .tiles:has(> :nth-child(6):last-child) { grid-template-columns: repeat(3, 1fr); }
  /* 7 tiles: 4 + 3 (top row full, conventional) */
  .tiles:has(> :nth-child(7):last-child) { grid-template-columns: repeat(4, 1fr); }
  /* 8 tiles: 4 + 4 balanced */
  .tiles:has(> :nth-child(8):last-child) { grid-template-columns: repeat(4, 1fr); }
}
.tile { background: var(--bone); border: 1px solid var(--border); border-radius: var(--r-card); padding: var(--s-5); transition: border 0.2s, box-shadow 0.2s, transform 0.2s; }
.tile:hover { border-color: var(--gold); box-shadow: var(--sh-card-hover); transform: translateY(-2px); }
.tile h3 { color: var(--ink); margin-bottom: var(--s-2); }
.tile .tile-meta { font-size: 11px; color: var(--mute); font-weight: 600; margin-bottom: var(--s-3); text-transform: uppercase; letter-spacing: 0.1em; }
.tile p { font-size: 13px; color: var(--slate); margin-bottom: var(--s-3); }
.tile-link { font-size: 12px; font-weight: 600; color: var(--bronze); display: inline-flex; align-items: center; gap: 4px; }
.tile-link::after { content: '\2192'; transition: transform 0.2s; }
.tile:hover .tile-link::after { transform: translateX(3px); }

/* Outcome layer: goal-led cards (homepage spoor B) */
.outcome-head { max-width: 720px; margin: 0 auto var(--s-6); text-align: center; }
.outcome-head h2 { margin-bottom: var(--s-3); }
.outcome-head p { color: var(--slate); font-size: 17px; line-height: 1.6; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.outcome-card { display: flex; flex-direction: column; background: var(--bone); border: 1px solid var(--border); border-radius: var(--r-card); padding: var(--s-5); text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.outcome-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--sh-card-hover); }
.outcome-ic { display: inline-flex; width: 48px; height: 48px; border-radius: var(--r-box); background: rgba(184,132,44,0.1); align-items: center; justify-content: center; margin-bottom: var(--s-4); }
.outcome-ic svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.outcome-card h3 { color: var(--ink); font-size: 18px; line-height: 1.3; margin-bottom: var(--s-2); }
.outcome-card p { color: var(--slate); font-size: 14.5px; line-height: 1.55; margin-bottom: var(--s-4); flex: 1; }
.outcome-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; color: var(--bronze); }
.outcome-link svg { transition: transform 0.2s; }
.outcome-card:hover .outcome-link svg { transform: translateX(4px); }
.outcome-card--help { background: var(--ink); border-color: var(--ink); }
.outcome-card--help h3, .outcome-card--help .outcome-link { color: #fff; }
.outcome-card--help p { color: rgba(255,255,255,0.78); }
.outcome-card--help .outcome-ic { background: rgba(255,255,255,0.12); }
.outcome-card--help:hover { border-color: var(--gold); }
@media (max-width: 900px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .outcome-grid { grid-template-columns: 1fr; } }

/* Bento services grid (homepage) */
.bento-head { max-width: 760px; margin: 0 0 var(--s-6); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: var(--s-4); }
.bento-tile { display: flex; flex-direction: column; background: var(--bone); border: 1px solid var(--border); border-radius: var(--r-box); padding: var(--s-5); text-decoration: none; color: inherit; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.bento-tile:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.07); transform: translateY(-2px); }
.bento-ic { display: inline-flex; width: 44px; height: 44px; border-radius: var(--r-box); background: rgba(184,132,44,0.10); color: var(--bronze); align-items: center; justify-content: center; margin-bottom: var(--s-4); }
.bento-ic svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.bento-tile h3 { color: var(--ink); margin: 0 0 var(--s-2); font-size: 18px; }
.bento-tile p { font-size: 13px; color: var(--slate); margin: 0 0 var(--s-4); line-height: 1.55; }
.bento-link { margin-top: auto; font-size: 12px; font-weight: 600; color: var(--bronze); display: inline-flex; align-items: center; gap: 4px; }
.bento-link::after { content: '\2192'; transition: transform 0.2s; }
.bento-tile:hover .bento-link::after { transform: translateX(3px); }
.bento-feature { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, var(--cream), var(--bone)); border-color: var(--gold-soft); }
.bento-feature h3 { font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.02em; }
.bento-feature p { font-size: 14px; max-width: 420px; }
.bento-sectors { list-style: none; margin: 0 0 var(--s-5); padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2) var(--s-4); }
.bento-sectors li { font-size: 12px; color: var(--slate); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.bento-sectors li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .bento-feature { grid-column: span 2; grid-row: span 1; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento-feature { grid-column: span 1; } }

/* Why-strip - balanced rows via :has() */
.why-strip { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
@media (min-width: 1024px) {
  .why-strip:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }
  .why-strip:has(> :nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
  .why-strip:has(> :nth-child(5):last-child) { grid-template-columns: repeat(3, 1fr); }
  .why-strip:has(> :nth-child(6):last-child) { grid-template-columns: repeat(3, 1fr); }
}
.why-item { padding: var(--s-4); border-left: 2px solid var(--gold); }
.why-item h3 { font-size: 15px; margin-bottom: var(--s-2); }
.why-item p { font-size: 13px; margin: 0; }

/* Why-cards (home page variant - large rounded cards with icon top, label bottom) */
.why-panel { background: #F1F0EC; border-radius: 24px; padding: var(--s-8); }
@media (max-width: 639px) { .why-panel { padding: var(--s-6); } }
.why-cards { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
@media (min-width: 1024px) {
  .why-cards:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }
  .why-cards:has(> :nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
  .why-cards:has(> :nth-child(5):last-child) { grid-template-columns: repeat(3, 1fr); }
  .why-cards:has(> :nth-child(6):last-child) { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: var(--s-6);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.07); }
.why-card .why-icon {
  width: 56px; height: 56px;
  color: var(--ink);
  margin-bottom: var(--s-5);
}
.why-card .why-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.why-card .why-body { margin-top: auto; }
.why-card h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 0 0 var(--s-2); letter-spacing: -0.015em; line-height: 1.25; }
.why-card p { font-size: 13px; color: var(--slate); margin: 0; line-height: 1.55; }
@media (max-width: 639px) {
  .why-card { min-height: 220px; padding: var(--s-5); }
}

/* Testimonials - balanced rows via :has() */
.testimonials { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (min-width: 1024px) {
  .testimonials:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }
  .testimonials:has(> :nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
}
.testimonial { background: var(--bone); border: 1px solid var(--border); border-radius: var(--r-card); padding: var(--s-5); position: relative; }
.testimonial-dummy { position: absolute; top: 0; left: 0; right: 0; background: var(--cream); color: var(--bronze); text-align: center; padding: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-top-left-radius: var(--r-card); border-top-right-radius: var(--r-card); border-bottom: 1px solid var(--gold-soft); }
.testimonial blockquote { margin: var(--s-7) 0 var(--s-4); font-size: 14px; color: var(--ink); line-height: 1.6; }
.testimonial cite { font-style: normal; font-size: 12px; color: var(--mute); }
.testimonial cite strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }

/* Service finder */
.service-finder { background: var(--bone); border: 1px solid var(--border); border-radius: var(--r-box); padding: var(--s-6); }
.service-finder h2 { margin-bottom: var(--s-2); }
.service-finder p { color: var(--mute); margin-bottom: var(--s-5); }
.finder-options { display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
@media (min-width: 1024px) {
  .finder-options:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }
  .finder-options:has(> :nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
  .finder-options:has(> :nth-child(5):last-child) { grid-template-columns: repeat(3, 1fr); }
  .finder-options:has(> :nth-child(6):last-child) { grid-template-columns: repeat(3, 1fr); }
}
.finder-option { background: white; border: 1px solid var(--border); border-radius: var(--r-card); padding: var(--s-4); cursor: pointer; text-align: left; transition: all 0.2s; font-family: inherit; }
.finder-option:hover, .finder-option:focus { border-color: var(--gold); box-shadow: var(--sh-card-hover); outline: none; }
.finder-option strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.finder-option span { font-size: 12px; color: var(--mute); }
.finder-result { margin-top: var(--s-5); padding: var(--s-5); background: white; border-radius: var(--r-card); border: 1px solid var(--gold-soft); display: none; }
.finder-result.active { display: block; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
/* Center the label + heading that sit above a .faq block */
.container:has(> .faq) > .label-mute,
.container:has(> .faq) > h2 { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; display: block; }
.container:has(> .faq) > .label-mute { margin-bottom: var(--s-2); }
.container:has(> .faq) > h2 { margin-bottom: var(--s-5); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: var(--s-4) 0; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--gold); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 0 var(--s-4); font-size: 14px; color: var(--slate); margin: 0; }

/* Final CTA block */
.cta-block { background: var(--ink); color: white; padding: var(--s-9) 0; }
.cta-block h2 { color: white; max-width: 600px; }
.cta-block p { color: #D4D4D8; margin-bottom: var(--s-5); max-width: 600px; }
.cta-block .btn-secondary { background: transparent; color: white; border-color: white; }
.cta-block .btn-secondary:hover { background: white; color: var(--ink); }
.cta-block .btn-gold:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* CTA banner (image card with form) */
.cta-banner-section { background: var(--bone); }
.cta-banner { position: relative; overflow: hidden; border-radius: 24px; max-width: var(--max-w); margin: 0 auto; background: #15151a; }
.cta-banner .cta-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; filter: saturate(.7); }
.cta-banner .cta-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #15151a 0%, rgba(21,21,26,.92) 55%, rgba(21,21,26,.8) 100%); }
.cta-banner .cta-content { position: relative; z-index: 2; padding: var(--s-8); max-width: 620px; }
.cta-banner .cta-copy h2 { margin: 0 0 var(--s-4); color: #fff; font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; max-width: 470px; }
.cta-banner .cta-copy p { margin: 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.6; max-width: 430px; }
.cta-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-6); }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 52px; padding: 0 28px; border-radius: var(--r-full); font-size: 15px; font-weight: 600; border: 1.5px solid transparent; transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s; }
.cta-btn svg { width: 17px; height: 17px; }
.cta-btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.cta-btn-gold:hover { background: var(--bronze); border-color: var(--bronze); box-shadow: 0 8px 22px rgba(184,132,44,.4); transform: translateY(-1px); }
.cta-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.cta-btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (max-width: 820px) {
  .cta-banner .cta-content { padding: var(--s-7) var(--s-6); }
  .cta-banner .cta-overlay { background: linear-gradient(180deg, rgba(15,15,17,.82) 0%, rgba(15,15,17,.92) 100%); }
  .cta-banner .cta-copy h2, .cta-banner .cta-copy p { max-width: none; }
  .cta-actions .cta-btn { flex: 1 1 auto; }
}

/* Footer moved to site-chrome.css (single source for nav + footer). */

/* Contact page: two forms side by side */
.forms-2col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); align-items: start; }
.form-card { padding: var(--s-6); border: 1px solid var(--border); border-radius: var(--r-box); background: white; }
.form-card h2 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: var(--s-3); }
.form-card p { font-size: 15px; line-height: 1.7; color: var(--slate); }
.form-card .btn { margin-top: var(--s-3); }
#complaints { scroll-margin-top: 90px; }
@media (max-width: 760px) { .forms-2col { grid-template-columns: 1fr; } }

/* Blog index */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--s-5); }
.blog-empty { color: var(--mute); font-size: 16px; max-width: 820px; }
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-5); }
.res-card { display: block; padding: var(--s-6); border: 1px solid var(--border); border-radius: var(--r-box); background: white; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.res-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--sh-card-hover); }
.res-card h3 { margin-bottom: var(--s-2); }
.res-card p { font-size: 14px; color: var(--slate); margin: 0; }
.res-card .res-card-cta { display: inline-block; margin-top: var(--s-3); font-size: 13px; font-weight: 600; color: var(--gold); }
.wp-list { max-width: 820px; margin: 0 auto; }
.wp-list h3 { margin-top: var(--s-6); margin-bottom: var(--s-3); }
.wp-list ul { list-style: none; margin: 0 0 var(--s-4); padding: 0; }
.wp-list li { margin-bottom: var(--s-2); }
.wp-list li a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.wp-list li a:hover { border-bottom-color: var(--gold); }

/* Legal / policy prose */
.legal { max-width: 820px; margin: 0 auto; }
.legal-lede { font-size: 18px; color: var(--ink); margin-bottom: var(--s-6); }
.legal-ref { display: flex; flex-wrap: wrap; gap: var(--s-4); font-size: 12px; color: var(--mute); border-bottom: 1px solid var(--border); padding-bottom: var(--s-4); margin-bottom: var(--s-6); }
.legal h2 { font-size: clamp(20px, 2.4vw, 26px); margin: var(--s-7) 0 var(--s-3); }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 17px; color: var(--ink); margin: var(--s-5) 0 var(--s-2); }
.legal p { font-size: 15px; line-height: 1.75; color: var(--slate); }
.legal ol, .legal ul { padding-left: 22px; margin: 0 0 var(--s-4); color: var(--slate); }
.legal li { font-size: 15px; line-height: 1.7; margin-bottom: var(--s-2); }
.legal a { color: var(--gold); border-bottom: 1px solid currentColor; }
.legal a:hover { color: var(--bronze); }
.legal-bm { color: var(--mute); font-style: italic; font-size: 14px; margin-top: calc(-1 * var(--s-3)); }

/* WhatsApp floating */
.whatsapp-fab { position: fixed; right: var(--s-5); bottom: var(--s-5); width: 56px; height: 56px; background: var(--whatsapp); border-radius: var(--r-full); box-shadow: var(--sh-floating); display: flex; align-items: center; justify-content: center; z-index: 100; transition: transform 0.2s; color: white; }
.whatsapp-fab:hover { transform: scale(1.05); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* L2 info-block (visual-heavy option C) - sits right under hero on L2 hubs with L3 children */
.l2-info { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s-6); align-items: stretch; }
.l2-info-text { padding: var(--s-1) 0 var(--s-1) var(--s-5); border-left: 4px solid var(--gold); }
.l2-info-text .eyebrow { font-size: 10px; letter-spacing: 0.18em; color: var(--bronze); text-transform: uppercase; font-weight: 700; margin-bottom: var(--s-3); display: block; }
.l2-info-text h2 { font-size: clamp(22px, 2.5vw, 30px); margin: 0 0 var(--s-4); color: var(--ink); font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; }
.l2-info-text p { font-size: 15px; color: var(--slate); line-height: 1.65; margin: 0 0 var(--s-3); }
.l2-info-meta { display: flex; gap: var(--s-6); margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px dashed var(--border); flex-wrap: wrap; }
.l2-info-meta > div { font-size: 12px; color: var(--mute); }
.l2-info-meta strong { display: block; color: var(--ink); font-weight: 800; font-size: 15px; margin-bottom: 2px; }

.l2-info-cta { background: linear-gradient(180deg, var(--ink) 0%, #27272A 100%); color: white; border-radius: var(--r-box); padding: var(--s-7); display: flex; flex-direction: column; justify-content: center; gap: var(--s-3); position: relative; overflow: hidden; }
.l2-info-cta::before { content: ""; position: absolute; top: -30%; right: -25%; width: 80%; height: 90%; background: radial-gradient(circle, rgba(184,132,44,0.4), transparent 60%); pointer-events: none; }
.l2-info-cta > * { position: relative; z-index: 2; }
.l2-info-cta .eyebrow { font-size: 10px; letter-spacing: 0.18em; color: var(--gold-soft); text-transform: uppercase; font-weight: 700; }
.l2-info-cta h3 { font-size: clamp(18px, 2vw, 22px); margin: 0 0 var(--s-2); color: white; font-weight: 700; }
.l2-info-cta p { font-size: 13px; color: #D4D4D8; margin: 0 0 var(--s-4); line-height: 1.55; }
.l2-info-cta .ctas { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.l2-info-cta .btn-gold { background: var(--gold); color: white; border-color: var(--gold); }
.l2-info-cta .btn-gold:hover { background: var(--bronze); border-color: var(--bronze); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(184,132,44,0.3); }
.l2-info-cta .btn-outline { background: transparent; color: white; border: 1px solid white; padding: 12px 18px; font-size: 13px; font-weight: 600; border-radius: 2px; display: inline-flex; align-items: center; gap: var(--s-2); transition: all 0.2s; }
.l2-info-cta .btn-outline::before { content: ""; width: 10px; height: 10px; background: var(--whatsapp); border-radius: 50%; }
.l2-info-cta .btn-outline:hover { background: white; color: var(--ink); }

@media (max-width: 768px) {
  .l2-info { grid-template-columns: 1fr; }
  .l2-info-text { border-left: none; border-top: 4px solid var(--gold); padding: var(--s-4) 0 0; }
}

/* L1 info-block (option C - centered single-column flow under hero) */
.l1-info { max-width: 760px; margin: 0 auto; text-align: center; }
.l1-info > .eyebrow { font-size: 10px; letter-spacing: 0.18em; color: var(--bronze); text-transform: uppercase; font-weight: 700; margin-bottom: var(--s-3); display: block; }
.l1-info h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 var(--s-4); color: var(--ink); font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; }
.l1-info p { font-size: 15px; color: var(--slate); line-height: 1.7; margin: 0 0 var(--s-3); }
.l1-info p:last-of-type { margin-bottom: var(--s-5); }
.l1-info-ctas { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

/* Homepage trust badge section */
.trust-hero-section { background: white; padding-top: var(--s-7); }
.hero-badge-demo {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: var(--s-7);
  align-items: center;
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: var(--r-box);
  padding: var(--s-7);
}
.hero-badge-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(184, 132, 44, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(244, 235, 208, 0.8), transparent 42%);
  pointer-events: none;
}
.hero-badge-copy,
.badge-cluster { position: relative; z-index: 1; }
.hero-badge-copy .label-mute {
  display: block;
  margin-bottom: var(--s-2);
  color: var(--bronze);
}
.hero-badge-copy h2 {
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.06;
  max-width: 600px;
  margin-bottom: var(--s-4);
}
.hero-badge-copy p { max-width: 540px; margin-bottom: var(--s-5); }
.badge-cluster {
  display: grid;
  gap: var(--s-3);
}
.mini-badge {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--r-box);
  padding: var(--s-4);
  box-shadow: 0 10px 26px rgba(24, 24, 27, 0.05);
}
.mini-badge-logo {
  width: 86px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: var(--s-3);
  border-left: 1px solid var(--border);
}
.mini-badge:nth-child(2) { margin-left: var(--s-6); }
.mini-badge:nth-child(3) { margin-left: var(--s-3); }
.badge-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-soft);
  background: white;
  border-radius: var(--r-full);
  display: inline-grid;
  place-items: center;
  color: var(--bronze);
  font-weight: 800;
  flex: 0 0 auto;
}
.badge-mark svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.mini-badge strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
}
.mini-badge span {
  color: var(--mute);
  font-size: 12px;
  line-height: 1.45;
}

/* Mid-page CTA panel (gold accent, used on L1/L2 between content sections) */
.midcta { background: linear-gradient(180deg, var(--bone), var(--cream)); border: 1px solid var(--gold-soft); border-radius: var(--r-box); padding: var(--s-6) var(--s-7); display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }
.midcta-text { flex: 1; min-width: 0; }
.midcta-eyebrow { font-size: 10px; letter-spacing: 0.18em; color: var(--bronze); text-transform: uppercase; font-weight: 700; margin-bottom: 6px; display: block; }
.midcta-headline { font-size: clamp(16px, 1.6vw, 19px); font-weight: 700; color: var(--ink); line-height: 1.3; }
.midcta .btn-gold { white-space: nowrap; flex-shrink: 0; }
.midcta .btn-gold:hover { background: var(--bronze); border-color: var(--bronze); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(184,132,44,0.3); }
@media (max-width: 639px) {
  .midcta { flex-direction: column; align-items: flex-start; padding: var(--s-5); }
}

/* Forms */
.form { max-width: 600px; }
.form-row { margin-bottom: var(--s-4); }
.form-row label { display: block; font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: var(--s-2); text-transform: uppercase; letter-spacing: 0.05em; }
.form-row input, .form-row textarea, .form-row select { width: 100%; padding: 10px 12px; font-family: inherit; font-size: 14px; border: 1px solid var(--border); border-radius: var(--r-btn); background: white; transition: border 0.2s; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--gold); }
.form-row textarea { min-height: 120px; resize: vertical; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Auto-reveal common containers without per-page markup changes */
.hero-inner > .eyebrow,
.hero-inner > h1,
.hero-inner > p,
.hero-inner > .hero-ctas { opacity: 0; transform: translateY(20px); animation: heroFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-inner > .eyebrow { animation-delay: 0.05s; }
.hero-inner > h1 { animation-delay: 0.18s; }
.hero-inner > p { animation-delay: 0.32s; }
.hero-inner > .hero-ctas { animation-delay: 0.45s; }
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* Stagger reveal for tile grids, why-strip, testimonials, finder options */
.tiles > *,
.why-strip > *,
.why-cards > *,
.testimonials > *,
.finder-options > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tiles.in > *,
.why-strip.in > *,
.why-cards.in > *,
.testimonials.in > *,
.finder-options.in > * { opacity: 1; transform: translateY(0); }
.tiles.in > :nth-child(1), .why-strip.in > :nth-child(1), .testimonials.in > :nth-child(1), .finder-options.in > :nth-child(1) { transition-delay: 0.05s; }
.tiles.in > :nth-child(2), .why-strip.in > :nth-child(2), .testimonials.in > :nth-child(2), .finder-options.in > :nth-child(2) { transition-delay: 0.13s; }
.tiles.in > :nth-child(3), .why-strip.in > :nth-child(3), .testimonials.in > :nth-child(3), .finder-options.in > :nth-child(3) { transition-delay: 0.21s; }
.tiles.in > :nth-child(4), .why-strip.in > :nth-child(4), .testimonials.in > :nth-child(4), .finder-options.in > :nth-child(4) { transition-delay: 0.29s; }
.tiles.in > :nth-child(5), .why-strip.in > :nth-child(5), .testimonials.in > :nth-child(5), .finder-options.in > :nth-child(5) { transition-delay: 0.37s; }
.tiles.in > :nth-child(6), .why-strip.in > :nth-child(6), .testimonials.in > :nth-child(6), .finder-options.in > :nth-child(6) { transition-delay: 0.45s; }
.tiles.in > :nth-child(7), .tiles.in > :nth-child(8) { transition-delay: 0.5s; }

/* Section header reveal (label + h2 above content blocks) */
.container > .label-mute,
.container > h2 { opacity: 0; transform: translateY(16px); transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
.section.in .container > .label-mute,
.section.in .container > h2,
.cta-block.in .container > .label-mute,
.cta-block.in .container > h2 { opacity: 1; transform: translateY(0); }

/* Hero swoosh subtle scroll parallax via CSS var (set by JS) */
.hero-swoosh { transform: translateY(calc(var(--scrollY, 0) * 0.15px)); will-change: transform; transition: transform 0.05s linear; }

/* Tile hover lift refined */
.tile { will-change: transform; }

/* Button shine on hover (subtle) */
.btn-gold:hover, .btn-primary:hover { transform: translateY(-1px); }

/* CTA block enter animation */
.cta-block { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.cta-block.in { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 1023px) {
  .hero { padding: var(--s-7) 0; }
  .qxt-feature-panel { grid-template-columns: 1fr; }
  .hero-badge-demo { grid-template-columns: 1fr; }
}

@media (max-width: 639px) {
  .section { padding: var(--s-7) 0; }
  .tiles { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .qxt-feature-tabs-section { padding-top: var(--s-6); }
  .qxt-feature-tabs,
  .qxt-feature-panel { padding: var(--s-4); }
  .qxt-feature-tablist { align-items: stretch; flex-direction: column; }
  .qxt-feature-tab { justify-content: center; width: 100%; }
  .qxt-feature-visual,
  .qxt-feature-visual img { min-height: 260px; }
  .trust-hero-section { padding-top: var(--s-5); }
  .hero-badge-demo { padding: var(--s-5); }
  .mini-badge { align-items: flex-start; }
  .mini-badge-logo {
    width: 74px;
    height: 30px;
  }
  .mini-badge:nth-child(2),
  .mini-badge:nth-child(3) { margin-left: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal,
  .hero-inner > *,
  .tiles > *, .why-strip > *,
.why-cards > *, .testimonials > *, .finder-options > *,
  .container > .label-mute, .container > h2,
  .cta-block { opacity: 1 !important; transform: none !important; }
  .hero-swoosh { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* Skip link */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--ink); color: white; padding: 8px 16px; z-index: 1000; }
.skip-link:focus { top: 0; }


/* ============================================================
   SITE UNIFICATION: match the redesigned inner pages.
   Gold pill + glow CTAs, 120px section rhythm, pill nav-cta.
   ============================================================ */
.btn { border-radius: 9999px; }
.btn-primary, .btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); animation: qx-cta-glow 4.5s ease-in-out infinite; }
.btn-primary:hover, .btn-gold:hover { background: var(--bronze); border-color: var(--bronze); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(184,132,44,0.4); animation: none; }
.cta-block .btn-gold:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
@keyframes qx-cta-glow { 0%,100% { box-shadow: 0 0 0 rgba(184,132,44,0); } 8% { box-shadow: 0 0 22px rgba(184,132,44,0.55); } 16% { box-shadow: 0 0 0 rgba(184,132,44,0); } }
.section { padding: 120px 0; }
.hero { padding: 120px 0; }
.cta-block { padding: 120px 0; }
@media (max-width: 768px) {
  .hero { padding: 84px 0; }
  .section, .cta-block { padding: 80px 0; }
}
@media (prefers-reduced-motion: reduce) { .btn-primary, .btn-gold { animation: none; } }


/* ============================================================
   CONTACT: 2-column layout (dark panel + form) + map
   ============================================================ */
.contact-2col { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); }
.contact-panel { background: var(--ink); color: #fff; padding: clamp(32px, 4vw, 56px); }
.contact-panel h1 { color: #fff; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; margin: 0 0 16px; }
.contact-panel p { color: rgba(255,255,255,0.82); margin: 0 0 16px; line-height: 1.6; }
.contact-panel-block { margin-top: 28px; }
.contact-panel-block h4 { color: var(--gold-soft); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 8px; }
.contact-panel-block p { color: rgba(255,255,255,0.82); margin: 0 0 8px; }
.contact-panel-block a { color: #fff; }
.contact-panel-block a:hover { color: var(--gold-soft); }
.contact-formcard { background: #fff; padding: clamp(32px, 4vw, 56px); }
.contact-formcard h2 { font-size: 20px; margin: 0 0 20px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.contact-form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 600; color: var(--slate); }
.contact-form-grid label.full { grid-column: 1 / -1; }
.contact-form-grid input, .contact-form-grid select, .contact-form-grid textarea { padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 14px; color: var(--ink); }
.contact-form-grid textarea { min-height: 120px; resize: vertical; }
.contact-form-grid input:focus, .contact-form-grid select:focus, .contact-form-grid textarea:focus { outline: none; border-color: var(--gold); }
.contact-map { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { display: block; width: 100%; }
@media (max-width: 768px) { .contact-2col { grid-template-columns: 1fr; } .contact-form-grid { grid-template-columns: 1fr; } }
