/* =================================================================
   Ignivara iQ — shared stylesheet
   One file for all six pages. See README.md before editing the
   header or footer markup — it is duplicated in every page.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --color-bg: #FAF9F6;
  --color-text: #3E2E2F;
  --color-text-secondary: #4A3D3E;
  --color-text-muted: #7A6D6E;
  --color-border: #E6E3DC;
  --color-dark: #2A1F20;
  --color-dark-card: #3E2E2F;
  --color-off-white: #E4DFD8;
  --color-muted-on-dark: #B8B1AA;
  --color-green-hover: #6E8F3C;
  --color-green-accent: #A9DD5E;
  --color-green-highlight: #C9E265;
  --color-green-start: #89D957;
  --color-input-border: #D5D0C7;
  --gradient-accent: linear-gradient(90deg, #89D957 0%, #C9E265 100%);

  --font-serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --max-width: 1440px;
  --page-padding: 80px;
  --section-pad-y: 104px;
  --section-pad-y-lg: 116px;
}

@media (max-width: 1199px) {
  :root {
    --page-padding: 48px;
    --section-pad-y: 72px;
    --section-pad-y-lg: 72px;
  }
}

@media (max-width: 767px) {
  :root {
    --page-padding: 24px;
    --section-pad-y: 48px;
    --section-pad-y-lg: 48px;
  }
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
}

img { max-width: 100%; display: block; }

a {
  color: var(--color-text);
  text-decoration: none;
}
a:hover { color: var(--color-green-hover); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle-input:focus-visible + .nav-toggle-btn {
  outline: 2px solid var(--color-green-hover);
  outline-offset: 2px;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; margin: 0; }
p { margin: 0; }

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--color-dark-card);
  color: var(--color-bg);
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
  color: var(--color-bg);
}

.accent-bar {
  display: inline-block;
  height: 6px;
  width: 84px;
  background: var(--gradient-accent);
}

/* ---------- Layout shell ---------- */
.site {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------- Header & nav ---------- */
.site-header {
  position: relative;
  height: 92px;
  box-sizing: border-box;
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.site-header__logo img { height: 34px; }

.site-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a.is-active {
  border-bottom: 2px solid var(--color-green-accent);
  padding-bottom: 3px;
}

.nav-cta {
  padding: 11px 22px;
  background: var(--color-dark-card);
  color: var(--color-bg) !important;
  border-radius: 4px;
}
.nav-cta:hover { color: var(--color-bg) !important; opacity: 0.88; }

.nav-toggle-input {
  display: none;
}

.nav-toggle-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
}
.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before { position: absolute; top: -6px; }
.nav-toggle-icon::after { position: absolute; top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.2;
}
.btn-primary {
  background: var(--color-dark-card);
  color: var(--color-bg);
}
.btn-primary:hover { color: var(--color-bg); opacity: 0.88; }
.btn-secondary {
  background: transparent;
  border: 1px solid #C9C4BA;
  color: var(--color-text);
}
.btn-secondary:hover { color: var(--color-green-hover); }

/* ---------- Generic page hero (service / how-it-works) ---------- */
.page-hero {
  padding: 96px var(--page-padding) 72px var(--page-padding);
}
.page-hero .accent-bar { margin-bottom: 32px; }
.page-hero h1 {
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.page-hero__lead {
  font-size: 21px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 820px;
}

/* ---------- Cards (generic) ---------- */
.card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

/* =================================================================
   HOME
   ================================================================= */
.hero {
  padding: var(--section-pad-y-lg) var(--page-padding) var(--section-pad-y) var(--page-padding);
  display: flex;
  gap: 96px;
  align-items: flex-start;
}
.hero__content { width: 760px; max-width: 100%; }
.hero__content .accent-bar { margin-bottom: 36px; }
.hero__content h1 {
  font-size: 78px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero__content p {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 620px;
  margin-bottom: 20px;
}
.hero__content p.hero__lead-strong {
  font-weight: 500;
  margin-bottom: 44px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__panel {
  width: 424px;
  max-width: 100%;
  flex-shrink: 0;
  padding: 40px;
}
.hero__panel .eyebrow { margin-bottom: 20px; }
.hero__panel .panel-title {
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.25;
  margin-bottom: 22px;
}
.hero__panel .panel-quote {
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid var(--color-green-accent);
}
.hero__panel p.panel-copy {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}
.hero__panel p.panel-note {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.business-first-wrap { padding: 0 var(--page-padding) var(--section-pad-y) var(--page-padding); }
.business-first {
  padding: 72px 80px;
}
.business-first h2 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.business-first p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 880px;
}
.business-first p + p { margin-top: 20px; }

.no-score {
  padding: 96px var(--page-padding);
  background: var(--color-dark);
  color: var(--color-bg);
  display: flex;
  gap: 96px;
  align-items: flex-start;
}
.no-score__heading { width: 560px; max-width: 100%; }
.no-score__heading .accent-bar { margin-bottom: 32px; }
.no-score__heading h2 {
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-bg);
}
.no-score__body { width: 624px; max-width: 100%; padding-top: 12px; }
.no-score__body p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--color-off-white);
  margin-bottom: 22px;
}
.no-score__body p:last-child {
  margin-bottom: 0;
  color: var(--color-green-highlight);
  font-weight: 500;
}

.expectations { padding: var(--section-pad-y) var(--page-padding); }
.expectations h2 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.expectations__intro {
  font-size: 19px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 780px;
  margin-bottom: 52px;
}
.expectations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.expectation-card { padding: 36px; }
.expectation-card__title {
  font-family: var(--font-serif);
  font-size: 25px;
  margin-bottom: 14px;
}
.expectation-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.expectation-card--dark {
  background: var(--color-dark-card);
  border: none;
}
.expectation-card--dark .expectation-card__title { color: var(--color-green-highlight); }
.expectation-card--dark p { color: var(--color-off-white); margin-bottom: 14px; }
.expectation-card--dark p:last-child { margin-bottom: 0; color: var(--color-bg); font-weight: 500; }

.cta-banner-wrap { padding: 0 var(--page-padding) var(--section-pad-y) var(--page-padding); }
.cta-banner {
  padding: 64px 80px;
  background: var(--gradient-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-banner__title {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-dark);
  max-width: 640px;
}
.cta-banner .btn-primary {
  background: var(--color-dark);
  white-space: nowrap;
  padding: 18px 34px;
}

/* =================================================================
   SERVICE
   ================================================================= */
.tiers-section { padding: 0 var(--page-padding) 96px var(--page-padding); }
.tiers-section h2 {
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.tiers-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.tiers-section .capability-section__note { margin-bottom: 0; }
.tier-card {
  padding: 44px 52px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.tier-card__meta { width: 360px; flex-shrink: 0; }
.tier-card__title {
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 10px;
}
.tier-card__badge { font-size: 15px; font-weight: 600; letter-spacing: 0.02em; color: var(--color-text-muted); }
.tier-card__badge--free { color: var(--color-green-hover); }
.tier-card p.tier-card__desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.tier-card--dark {
  background: var(--color-dark-card);
  border: none;
}
.tier-card--dark .tier-card__title { color: var(--color-green-highlight); }
.tier-card--dark .tier-card__badge { color: var(--color-muted-on-dark); }
.tier-card--dark p.tier-card__desc { color: var(--color-off-white); }

.capability-section { padding: 0 var(--page-padding) 96px var(--page-padding); }
.capability-section h2 {
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.capability-section__intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin-bottom: 40px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.capability-card { padding: 30px 34px; }
.capability-card__title { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.capability-card p { font-size: 16px; line-height: 1.65; color: var(--color-text-secondary); }
.capability-card--dark { background: var(--color-dark-card); border: none; }
.capability-card--dark .capability-card__title { color: var(--color-green-highlight); }
.capability-card--dark p { color: var(--color-off-white); }
.capability-card--span-2 { grid-column: 1 / -1; }
.capability-section__note {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin-bottom: 40px;
}
/* The new "what we measure against" section has two lead paragraphs
   (general intro + sector-specific note) before its card grid, where the
   reused .capability-section__intro elsewhere only ever has one. */
.orient-section .capability-section__intro { margin-bottom: 16px; }

.callout-wrap { padding: 0 var(--page-padding) var(--section-pad-y) var(--page-padding); }
.callout-card {
  padding: 56px 64px;
  border-left: 5px solid var(--color-green-accent);
}
.callout-card h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.callout-card p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 860px;
  margin-bottom: 24px;
}
.callout-card p:last-child {
  margin-bottom: 0;
  color: var(--color-text);
  font-weight: 500;
}

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.steps-wrap {
  padding: 0 var(--page-padding) 96px var(--page-padding);
  display: flex;
  flex-direction: column;
}
.step {
  display: flex;
  gap: 48px;
  padding: 42px 0;
  border-top: 1px solid var(--color-border);
}
.step:last-child { border-bottom: 1px solid var(--color-border); }
.step__number {
  width: 72px;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--color-green-accent);
  line-height: 1;
}
.step__body { flex-grow: 1; }
.step__body h2, .step__body .step__title {
  font-family: var(--font-serif);
  font-size: 30px;
  margin-bottom: 14px;
}
.step__body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 900px;
}

.highlight-panel-wrap { padding: 0 var(--page-padding) 96px var(--page-padding); }
.highlight-panel {
  padding: 68px 80px;
  background: var(--color-dark);
  border-radius: 6px;
  color: var(--color-bg);
}
.highlight-panel h2 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-bg);
  margin-bottom: 24px;
}
.highlight-panel > p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--color-off-white);
  max-width: 900px;
  margin-bottom: 20px;
}
.highlight-panel > p:last-child {
  margin-bottom: 0;
  color: var(--color-green-highlight);
  font-weight: 500;
}

/* About page uses a smaller variant of the same dark panel */
.highlight-panel--about { padding: 60px 72px; }
.highlight-panel--about h2 { font-size: 36px; line-height: 1.2; margin-bottom: 22px; }
.highlight-panel--about > p { font-size: 18px; }
.highlight-panel--about > p:last-child {
  color: var(--color-off-white);
  font-weight: 400;
}

/* Contact page's dark panel wraps a 3-column grid, not paragraphs — kept separate
   so it never inherits the paragraph rules above. */
.next-steps-panel {
  padding: 56px 72px;
  background: var(--color-dark);
  border-radius: 6px;
  color: var(--color-bg);
}
.next-steps-panel h2 {
  font-size: 34px;
  line-height: 1.2;
  color: var(--color-bg);
  margin-bottom: 20px;
}

.compare-wrap { padding: 0 var(--page-padding) var(--section-pad-y) var(--page-padding); }
.compare-wrap h2 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 32px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.compare-card { padding: 40px 44px; }
.compare-card .eyebrow { display: block; margin-bottom: 16px; }
.compare-card .eyebrow--tool { color: var(--color-text-muted); }
.compare-card .eyebrow--consultant { color: var(--color-green-hover); }
.compare-card p { font-size: 18px; line-height: 1.65; color: var(--color-text-secondary); }

/* =================================================================
   ABOUT
   ================================================================= */
.about-intro {
  padding: 96px var(--page-padding) 72px var(--page-padding);
  display: flex;
  gap: 88px;
  align-items: flex-start;
}
.about-intro__content { width: 760px; max-width: 100%; }
.about-intro__content .accent-bar { margin-bottom: 32px; }
.about-intro__content h1 {
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.about-intro__content p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 22px;
}
.about-intro__content p:first-of-type { font-size: 21px; line-height: 1.65; }
.about-intro__content p:last-child { margin-bottom: 0; }

.credentials-panel { width: 392px; max-width: 100%; flex-shrink: 0; padding: 40px; }
.credentials-panel .eyebrow { display: block; margin-bottom: 22px; }
.credentials-panel__list {
  font-size: 17px;
  line-height: 2.1;
  color: var(--color-text);
}

.work-wrap { padding: 0 var(--page-padding) 88px var(--page-padding); }
.work-wrap h2 { font-size: 40px; letter-spacing: -0.02em; margin-bottom: 36px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.work-card { padding: 36px 40px; }
.work-card__title { font-size: 19px; font-weight: 600; margin-bottom: 12px; line-height: 1.35; }
.work-card p { font-size: 16px; line-height: 1.65; color: var(--color-text-secondary); }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-hero {
  padding: 96px var(--page-padding);
  display: flex;
  gap: 88px;
  align-items: flex-start;
}
.contact-hero__content { width: 560px; max-width: 100%; }
.contact-hero__content .accent-bar { margin-bottom: 32px; }
.contact-hero__content h1 {
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.contact-hero__content > p { font-size: 20px; line-height: 1.65; color: var(--color-text-secondary); margin-bottom: 24px; }
.contact-hero__content > p.contact-hero__note { font-size: 18px; line-height: 1.65; margin-bottom: 40px; }

.direct-card { padding: 32px 36px; }
.direct-card .eyebrow { display: block; margin-bottom: 16px; }
.direct-card__list { font-size: 19px; line-height: 1.8; color: var(--color-text); }
.direct-card__list .direct-card__phone { font-size: 17px; color: var(--color-text-secondary); }
.direct-card__list a { border-bottom: 1px solid var(--color-green-accent); }
.direct-card__list a[href^="#linkedin"] { font-size: 17px; }

.enquiry-card { width: 560px; max-width: 100%; padding: 48px 52px; }
.enquiry-card__title { font-family: var(--font-serif); font-size: 30px; margin-bottom: 30px; }

.enquiry-form { display: flex; flex-direction: column; gap: 22px; }
.enquiry-form[hidden] { display: none; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 15px; font-weight: 500; color: var(--color-text); }
.form-field input,
.form-field textarea {
  box-sizing: border-box;
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-input-border);
  border-radius: 4px;
}
.form-field input { height: 48px; }
.form-field textarea { padding: 14px; line-height: 1.5; resize: vertical; }

.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.enquiry-form .btn-submit {
  height: 54px;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-bg);
  background: var(--color-dark-card);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.enquiry-form .btn-submit:hover { opacity: 0.9; }

.form-note {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.form-note a { color: var(--color-text-muted); text-decoration: underline; }

.form-status {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.form-status--error { color: #A6432B; }
.form-status a { text-decoration: underline; }

.next-steps-wrap { padding: 0 var(--page-padding) var(--section-pad-y) var(--page-padding); }
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 30px;
}
.next-steps-grid__number {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--color-green-highlight);
  margin-bottom: 12px;
}
.next-steps-grid p { font-size: 17px; line-height: 1.65; color: var(--color-off-white); }

/* =================================================================
   PRIVACY
   ================================================================= */
.legal-content { padding: 0 var(--page-padding) var(--section-pad-y) var(--page-padding); }
.legal-content__inner { max-width: 820px; }
.legal-content h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: 48px 0 16px 0;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.legal-content li {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  margin-top: auto;
  padding: 44px var(--page-padding);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.site-footer__legal,
.site-footer__contact {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.site-footer__contact { text-align: right; }
.site-footer__contact a { color: var(--color-text-muted); text-decoration: underline; }

/* =================================================================
   RESPONSIVE — tablet and below (≤1199px)
   ================================================================= */
@media (max-width: 1199px) {
  .hero,
  .no-score,
  .about-intro,
  .contact-hero {
    flex-direction: column;
    gap: 48px;
  }
  .hero__panel,
  .no-score__heading,
  .no-score__body,
  .credentials-panel,
  .contact-hero__content,
  .enquiry-card {
    width: 100%;
  }

  .expectations__grid,
  .capability-grid,
  .compare-grid,
  .work-grid,
  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .tier-card { flex-direction: column; gap: 20px; }
  .tier-card__meta { width: 100%; }

  .cta-banner { flex-direction: column; align-items: flex-start; }

  .hero__content h1 { font-size: 58px; }
  .no-score__heading h2 { font-size: 42px; }
  .business-first h2,
  .expectations h2 { font-size: 36px; }
  .cta-banner__title { font-size: 32px; }
  .page-hero h1,
  .about-intro__content h1,
  .contact-hero__content h1 { font-size: 46px; }
  .highlight-panel h2 { font-size: 32px; }
  .compare-wrap h2,
  .work-wrap h2,
  .capability-section h2,
  .tiers-section h2 { font-size: 32px; }

  .business-first { padding: 48px; }
  .cta-banner { padding: 48px; }
  .highlight-panel { padding: 48px; }
  .callout-card { padding: 40px 44px; }
}

/* =================================================================
   RESPONSIVE — phone (≤767px)
   ================================================================= */
@media (max-width: 767px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px var(--page-padding) 28px var(--page-padding);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 20;
  }
  .nav-toggle-input:checked ~ .site-nav { display: flex; }

  .nav-toggle-input {
    display: block;
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-toggle-btn { display: flex; }

  .hero__content h1 { font-size: 44px; }
  .no-score__heading h2 { font-size: 34px; }
  .business-first h2,
  .expectations h2 { font-size: 28px; }
  .cta-banner__title { font-size: 26px; }
  .page-hero h1,
  .about-intro__content h1,
  .contact-hero__content h1 { font-size: 36px; }
  .highlight-panel h2 { font-size: 26px; }
  .compare-wrap h2,
  .work-wrap h2,
  .capability-section h2,
  .tiers-section h2 { font-size: 26px; }
  .legal-content h2 { font-size: 24px; }

  .business-first { padding: 32px 24px; }
  .cta-banner { padding: 32px 24px; }
  .highlight-panel { padding: 32px 24px; }
  .callout-card { padding: 32px 24px; }
  .tier-card,
  .direct-card,
  .enquiry-card,
  .credentials-panel,
  .hero__panel { padding: 28px 24px; }

  .site-footer { flex-direction: column; gap: 16px; }
  .site-footer__contact { text-align: left; }
}
