/* EVO Certification Group - Agevia-inspired editorial system.
   Lime on ink and cream, with DM Sans and Red Hat Mono. */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Red+Hat+Mono:wght@400;500;600&display=swap');

:root {
  --evo-ink:            #090a09;
  --evo-ink-deep:       #090a09;
  --evo-surface:        #171817;
  --evo-border:         #2c2e2c;
  --evo-bone:           #f5f3d9;
  --evo-sand:           #eae7bd;
  --evo-accent:         #ddff72;
  --evo-accent-hover:   #cbed60;
  --evo-accent-press:   #b6d44d;
  --evo-accent-tint:    #efffbd;

  /* Support (state only, never brand) */
  --evo-pass:           #3f9c5f;
  --evo-finding:        #d9a406;
  --evo-major:          #c5341c;

  /* Type */
  --evo-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --evo-label-font: 'Red Hat Mono', ui-monospace, SFMono-Regular, monospace;
  --evo-tracking-wordmark: 0.10em;
  --evo-tracking-descriptor: 0.30em;
  --evo-tracking-eyebrow: 0.24em;
  --evo-tracking-display: -0.03em;

  /* Geometry: flat system, zero radius, 2px rules */
  --evo-radius: 0px;
  --evo-rule: 2px;

  /* Spacing (4px base) */
  --evo-space-1: 4px;  --evo-space-2: 8px;  --evo-space-3: 12px;
  --evo-space-4: 16px; --evo-space-5: 24px; --evo-space-6: 32px;
  --evo-space-7: 48px; --evo-space-8: 64px; --evo-space-9: 96px;

  /* Rule colours (foreground-tinted) */
  --evo-rule-ink:   rgba(245, 243, 217, 0.18);
  --evo-rule-light: rgba(9, 10, 9, 0.14);
}

/* --- Colourway scopes --- */
.evo-on-ink    { background: var(--evo-ink);   color: var(--evo-bone);     --evo-mark: var(--evo-bone);     --evo-rule-color: var(--evo-rule-ink); }
.evo-on-light  { background: var(--evo-sand);  color: var(--evo-ink-deep); --evo-mark: var(--evo-ink-deep); --evo-rule-color: var(--evo-rule-light); }
.evo-on-orange { background: var(--evo-accent);color: var(--evo-ink-deep); --evo-mark: var(--evo-ink-deep); --evo-rule-color: var(--evo-rule-light); --evo-accent: var(--evo-sand); }

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--evo-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: var(--evo-ink);
  color: var(--evo-bone);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--evo-font); font-weight: 800; letter-spacing: var(--evo-tracking-display); line-height: 1.05; margin: 0 0 var(--evo-space-4); text-wrap: balance; }
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 24px; }
p  { margin: 0; max-width: 62ch; text-wrap: pretty; }
a  { color: var(--evo-accent); text-decoration: none; }
ul  { margin: 0; padding: 0; list-style: none; }
*:focus-visible { outline: 2px solid var(--evo-accent); outline-offset: 2px; }
::selection { background: var(--evo-accent); color: var(--evo-ink); }

/* Flat system: zero radius, no shadows, border-box everywhere - structure comes from rules and ground changes. */
*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; box-shadow: none !important; }

/* Imagery: black and white only. */
img { filter: grayscale(.25) contrast(1.05); }

/* --- Brand type roles --- */
.evo-wordmark   { font-weight: 800; letter-spacing: var(--evo-tracking-wordmark); text-transform: uppercase; line-height: 1; }
.evo-descriptor { font-family: var(--evo-label-font); font-weight: 600; letter-spacing: var(--evo-tracking-descriptor); text-transform: uppercase; }
.eyebrow        { font-family: var(--evo-label-font); font-weight: 600; letter-spacing: var(--evo-tracking-eyebrow); text-transform: uppercase; font-size: 11px; color: var(--evo-accent); margin: 0; }

/* --- Buttons: square, flush, no radius --- */
.evo-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; text-decoration: none;
  font-family: var(--evo-label-font); font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase; border-radius: 0;
  transition: background-color 180ms cubic-bezier(.4,0,.2,1), color 180ms cubic-bezier(.4,0,.2,1);
}
.evo-btn--md { padding: 14px 20px; }
.evo-btn--lg { padding: 16px 28px; }
.evo-btn--primary { background: var(--evo-accent); color: var(--evo-ink); }
.evo-btn--primary:hover { background: var(--evo-accent-hover); }
.evo-btn--primary:active { background: var(--evo-accent-press); }
.evo-btn--outline { background: transparent; color: currentColor; box-shadow: inset 0 0 0 2px currentColor; }
.evo-btn--outline:hover { background: var(--evo-accent); color: var(--evo-ink); }
.evo-btn--link { padding: 0 0 4px 0; border-bottom: 2px solid var(--evo-accent); color: var(--evo-accent); }
.evo-btn--link:hover { color: var(--evo-accent-hover); border-color: var(--evo-accent-hover); }
.evo-btn .btn-icon { width: 16px; height: 16px; transition: transform 180ms cubic-bezier(.4,0,.2,1); }
.evo-btn:hover .btn-icon { transform: translate(2px, -2px); }
.evo-btn--link:hover .btn-icon { transform: translate(2px, -2px); }
.evo-btn--on-ink { background: var(--evo-ink-deep); color: var(--evo-bone); }
.evo-btn--on-ink:hover { background: var(--evo-ink); }

/* --- Rules and panels --- */
.rule-t { border-top: var(--evo-rule) solid var(--evo-rule-ink); }
.evo-panel { background: var(--evo-surface); border: var(--evo-rule) solid var(--evo-border); padding: var(--evo-space-6); }

/* --- Motion: one quarter turn --- */
@keyframes evo-quarter { from { transform: rotate(0deg); } to { transform: rotate(90deg); } }
.evo-spin { animation: evo-quarter 900ms cubic-bezier(.7,0,.2,1) infinite; }
@media (prefers-reduced-motion: reduce) { .evo-spin { animation: none; } }

/* =====================================================================
   Layout
   ===================================================================== */
.container-site { margin: 0 auto; width: 100%; max-width: 80rem; padding: 0 20px; }
@media (min-width: 640px)  { .container-site { padding: 0 32px; } }
@media (min-width: 1024px) { .container-site { padding: 0 48px; } }

/* Headings */
.display-xl { font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(40px, 6vw, 76px); text-wrap: balance; }
.display-lg { font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(30px, 4vw, 46px); }
.heading-lg { font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(30px, 4vw, 46px); }
.heading-md { font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; font-size: 24px; }

/* Colours on ink */
.text-bone        { color: var(--evo-bone); }
.text-bone-60     { color: rgba(244, 239, 233, 0.60); }
.text-bone-55     { color: rgba(244, 239, 233, 0.55); }
.text-bone-50     { color: rgba(244, 239, 233, 0.50); }
.text-bone-40     { color: rgba(244, 239, 233, 0.40); }
.text-accent      { color: var(--evo-accent); }
.bg-surface       { background: var(--evo-surface); }
.bg-ink           { background: var(--evo-ink); }

/* Colours on light panels */
.text-ink         { color: var(--evo-ink); }
.text-ink-deep    { color: var(--evo-ink-deep); }
.text-ink-70      { color: rgba(28, 18, 6, 0.70); }
.text-ink-65      { color: rgba(28, 18, 6, 0.65); }
.text-ink-60      { color: rgba(28, 18, 6, 0.60); }
.text-ink-55      { color: rgba(28, 18, 6, 0.55); }
.text-ink-50      { color: rgba(28, 18, 6, 0.50); }
.text-ink-40      { color: rgba(28, 18, 6, 0.40); }

/* Light panel (bg-evo-charcoal in the reference) */
.panel-light { background: var(--evo-bone); color: var(--evo-ink-deep); }
.panel-light .rule-t { border-top-color: var(--evo-rule-light); }
.panel-orange { background: var(--evo-accent); color: var(--evo-ink-deep); }

/* Eyebrow overrides for light/orange panels */
.eyebrow--dim   { color: rgba(244, 239, 233, 0.50); }
.eyebrow--deep  { color: rgba(28, 18, 6, 0.70); }

/* Section spacing */
.section { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 1024px) { .section { padding-top: 96px; padding-bottom: 96px; } }
.section-lg { padding-top: 80px; padding-bottom: 80px; }
@media (min-width: 1024px) { .section-lg { padding-top: 112px; padding-bottom: 112px; } }

/* --- Header --- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background-color 300ms, border-color 300ms;
  border-bottom: 2px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--evo-rule-ink);
  background: rgba(21, 19, 17, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.site-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .site-nav { display: flex; } }
.site-nav__link { color: var(--evo-bone); opacity: 0.6; font-size: 14px; transition: opacity 180ms; }
.site-nav__link:hover, .site-nav__link.is-active { opacity: 1; }
.site-nav__link--active-parent { opacity: 1; }
.nav-dropdown { position: relative; }
.nav-dropdown__toggle { display: inline-flex; align-items: center; gap: 4px; color: var(--evo-bone); opacity: 0.6; font-size: 14px; background: none; border: 0; cursor: pointer; padding: 0; font-family: var(--evo-font); transition: opacity 180ms; }
.nav-dropdown__toggle:hover { opacity: 1; }
.nav-dropdown__toggle .btn-icon { width: 14px; height: 14px; transition: transform 200ms; }
.nav-dropdown:hover .nav-dropdown__toggle .btn-icon { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  padding-top: 16px; visibility: hidden; opacity: 0; transition: opacity 200ms, visibility 200ms;
}
.nav-dropdown:hover .nav-dropdown__menu { visibility: visible; opacity: 1; }
.nav-dropdown__panel { width: 288px; border: 2px solid var(--evo-rule-ink); background: var(--evo-ink); padding: 8px; }
.nav-dropdown__item { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 16px; transition: background-color 180ms; }
.nav-dropdown__item:hover { background: var(--evo-surface); }
.nav-dropdown__item .code { font-size: 14px; font-weight: 500; color: var(--evo-bone); }
.nav-dropdown__item .name { font-size: 12px; color: rgba(244, 239, 233, 0.5); }
.nav-dropdown__all { display: block; padding: 12px 16px; font-size: 14px; font-weight: 500; color: var(--evo-accent); }
.nav-dropdown__all:hover { background: var(--evo-surface); }
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }
.header-burger { display: inline-flex; padding: 8px; color: var(--evo-bone); background: none; border: 0; cursor: pointer; }
.header-burger .btn-icon { width: 24px; height: 24px; }
@media (min-width: 1024px) { .header-burger { display: none; } }

/* Mobile menu */
.mobile-menu { display: none; border-bottom: 2px solid var(--evo-rule-ink); background: rgba(21, 19, 17, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.mobile-menu.is-open { display: block; }
.mobile-menu__inner { display: flex; flex-direction: column; padding-top: 8px; padding-bottom: 24px; }
.mobile-menu__link { border-bottom: 2px solid rgba(244, 239, 233, 0.08); padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--evo-bone); }
.mobile-menu__grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; padding-top: 8px; }
.mobile-menu__std { padding: 10px 0; font-size: 14px; color: rgba(244, 239, 233, 0.6); }
.mobile-menu__cta { margin-top: 16px; }

/* --- Hero --- */
.hero { position: relative; padding-top: 144px; }
@media (min-width: 1024px) { .hero { padding-top: 176px; } }
.hero__inner { margin: 0 auto; max-width: 64rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 12px; border: 2px solid rgba(244, 239, 233, 0.15); background: var(--evo-surface); padding: 10px 20px; }
.hero__badge .stars { display: inline-flex; gap: 2px; color: var(--evo-accent); }
.hero__badge .stars svg { width: 14px; height: 14px; }
.hero__badge span { font-size: 13px; font-weight: 500; color: rgba(244, 239, 233, 0.7); }
@media (min-width: 640px) { .hero__badge span { font-size: 14px; } }
.hero__title { margin: 40px 0 0; }
.hero__lead { margin: 32px 0 0; max-width: 42rem; font-size: 18px; line-height: 1.6; color: rgba(244, 239, 233, 0.6); }
.hero__actions { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }
.hero__media { position: relative; margin-top: 64px; }
@media (min-width: 1024px) { .hero__media { margin-top: 96px; } }
.hero__media img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; display: block; }
@media (min-width: 640px) { .hero__media img { aspect-ratio: 16 / 7; } }
.hero__caption { position: absolute; bottom: 16px; left: 16px; display: none; align-items: center; gap: 8px; background: var(--evo-ink); padding: 10px 16px; font-size: 12px; font-weight: 500; color: var(--evo-bone); }
.hero__caption .dot { height: 6px; width: 6px; background: var(--evo-accent); }
@media (min-width: 640px) { .hero__caption { display: inline-flex; } }

/* --- Page hero --- */
.page-hero { padding-top: 144px; }
@media (min-width: 1024px) { .page-hero { padding-top: 204px; } }
.page-hero__inner { border-bottom: 2px solid var(--evo-rule-ink); padding-bottom: 56px; }
@media (min-width: 1024px) { .page-hero__inner { padding-bottom: 80px; } }
.page-hero__title { margin: 24px 0 0; max-width: 64rem; }
.page-hero__grid { margin-top: 32px; display: grid; gap: 32px; }
@media (min-width: 1024px) { .page-hero__grid { grid-template-columns: 8fr 4fr; } }
.page-hero__body { max-width: 42rem; font-size: 18px; line-height: 1.6; color: rgba(244, 239, 233, 0.6); }
.page-hero__cta { display: flex; align-items: flex-end; }
@media (min-width: 1024px) { .page-hero__cta { justify-content: flex-end; } }

/* --- Trust strip marquee --- */
.trust-strip { overflow: hidden; border-top: 2px solid rgba(244, 239, 233, 0.12); border-bottom: 2px solid rgba(244, 239, 233, 0.12); padding: 20px 0; }
.trust-strip__row { display: flex; width: max-content; align-items: center; }
.trust-strip__item { display: flex; align-items: center; white-space: nowrap; font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(244, 239, 233, 0.6); }
.trust-strip__sep { margin: 0 32px; color: var(--evo-accent); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.animate-marquee { animation: marquee 32s linear infinite; }
@media (prefers-reduced-motion: reduce) { .animate-marquee { animation: none; } }

/* --- Stats row --- */
.stats-row { display: grid; grid-template-columns: 1fr 1fr; row-gap: 48px; }
@media (min-width: 1024px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stats-row__item { padding: 0 24px; }
@media (min-width: 640px) { .stats-row__item { padding: 0 40px; } }
.stats-row__item + .stats-row__item { border-left: 2px solid rgba(244, 239, 233, 0.12); }
.stats-row__item:nth-child(3) { border-left: 0; }
@media (min-width: 1024px) { .stats-row__item:nth-child(3) { border-left: 2px solid rgba(244, 239, 233, 0.12); } }
.stats-row__value { font-weight: 700; font-size: 48px; letter-spacing: -0.02em; color: var(--evo-bone); line-height: 1; }
@media (min-width: 1024px) { .stats-row__value { font-size: 60px; } }
.stats-row__value .dot { color: var(--evo-accent); }
.stats-row__label { margin-top: 12px; font-size: 14px; color: rgba(244, 239, 233, 0.55); }

/* --- Split section heading --- */
.section-heading { display: grid; gap: 24px; }
@media (min-width: 1024px) { .section-heading { grid-template-columns: 8fr 4fr; gap: 48px; } }
.section-heading__title { margin-top: 16px; max-width: 42rem; }
.section-heading__body { display: flex; align-items: flex-end; font-size: 16px; line-height: 1.6; color: rgba(244, 239, 233, 0.55); }

/* --- Numbered rows (services, process, why evo, values, benefits) --- */
.num-row { display: grid; gap: 8px; padding: 28px 0; }
@media (min-width: 640px) {
  .num-row { grid-template-columns: 2fr 4fr 6fr; gap: 24px; padding: 32px 0; }
}
.num-row__index { display: flex; align-items: center; gap: 16px; font-weight: 500; font-size: 14px; color: rgba(244, 239, 233, 0.4); transition: color 180ms; }
.num-row:hover .num-row__index { color: var(--evo-accent); }
.num-row__title { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; color: var(--evo-bone); }
.num-row__body { max-width: 36rem; font-size: 14px; line-height: 1.6; color: rgba(244, 239, 233, 0.55); }

/* Services list */
.services-row { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; column-gap: 16px; row-gap: 12px; padding: 32px 0; transition: background-color 300ms; }
.services-row:hover { background: var(--evo-surface); }
.services-row__num { grid-column: 1 / 3; font-weight: 500; font-size: 14px; color: rgba(244, 239, 233, 0.4); transition: color 180ms; }
.services-row:hover .services-row__num { color: var(--evo-accent); }
.services-row__code-name { grid-column: 3 / -1; }
.services-row__code { display: block; font-weight: 700; font-size: 24px; letter-spacing: -0.02em; color: var(--evo-bone); transition: color 180ms; }
.services-row:hover .services-row__code { color: var(--evo-accent); }
.services-row__name { display: block; margin-top: 4px; font-size: 14px; color: rgba(244, 239, 233, 0.5); }
.services-row__desc { grid-column: 3 / -1; font-size: 14px; line-height: 1.6; color: rgba(244, 239, 233, 0.55); }
.services-row__arrow { display: none; justify-content: flex-end; }
@media (min-width: 640px) {
  .services-row { grid-template-columns: 1fr 4fr 5fr; column-gap: 32px; padding: 40px 0; }
  .services-row__num { grid-column: auto; }
  .services-row__code-name { grid-column: auto; }
  .services-row__desc { grid-column: auto; }
  .services-row__code { font-size: 30px; }
}
@media (min-width: 1024px) {
  .services-row { grid-template-columns: 1fr 4fr 6fr 1fr; }
  .services-row__arrow { display: flex; }
}
.arrow-badge { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 2px solid rgba(244, 239, 233, 0.15); color: var(--evo-bone); transition: all 300ms; }
.arrow-badge svg { width: 20px; height: 20px; transition: transform 300ms; }
.services-row:hover .arrow-badge { border-color: var(--evo-accent); background: var(--evo-accent); color: var(--evo-ink); }
.services-row:hover .arrow-badge svg { transform: translate(2px, -2px); }

/* Process timeline */
.process-step { display: grid; gap: 8px; padding: 28px 0; }
@media (min-width: 640px) { .process-step { grid-template-columns: 2fr 4fr 6fr; gap: 24px; padding: 32px 0; } }
.process-step__index { display: flex; align-items: center; gap: 16px; }
.process-step__badge { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; border: 2px solid rgba(244, 239, 233, 0.15); background: var(--evo-surface); color: rgba(244, 239, 233, 0.6); transition: all 300ms; }
.process-step__badge svg { width: 20px; height: 20px; }
.process-step:hover .process-step__badge { border-color: var(--evo-accent); background: var(--evo-accent); color: var(--evo-ink); }
.process-step__num { font-weight: 700; font-size: 30px; letter-spacing: -0.02em; color: rgba(244, 239, 233, 0.18); transition: color 180ms; }
@media (min-width: 640px) { .process-step__num { font-size: 36px; } }
.process-step:hover .process-step__num { color: var(--evo-accent); }
.process-step__title { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; color: var(--evo-bone); }
@media (min-width: 640px) { .process-step__title { font-size: 20px; } }
.process-step__body { max-width: 36rem; font-size: 14px; line-height: 1.6; color: rgba(244, 239, 233, 0.55); }

/* --- Split sticky section (Why EVO, FAQ, process intro) --- */
.split { display: grid; gap: 48px; }
@media (min-width: 1024px) { .split { grid-template-columns: 5fr 7fr; gap: 64px; } }
.split__sticky { position: static; }
@media (min-width: 1024px) { .split__sticky { position: sticky; top: 128px; } }
.split--left4 { display: grid; gap: 48px; }
@media (min-width: 1024px) { .split--left4 { grid-template-columns: 4fr 8fr; gap: 64px; } }

/* --- Editorial image grid (modern auditing) --- */
.auditing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auditing-grid img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; display: block; }
.auditing-grid img:last-child { margin-top: 40px; }

/* --- Industry cards --- */
.industries-grid { display: grid; gap: 48px 24px; }
@media (min-width: 640px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card .thumb { overflow: hidden; }
.industry-card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; transition: transform 700ms ease-out; }
.industry-card:hover img { transform: scale(1.04); }
.industry-card__meta { padding-top: 20px; }
.industry-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.industry-card__name { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; color: var(--evo-bone); }
.industry-card__num { font-weight: 500; font-size: 12px; color: rgba(244, 239, 233, 0.4); transition: color 180ms; }
.industry-card:hover .industry-card__num { color: var(--evo-accent); }
.industry-card__body { margin-top: 10px; font-size: 14px; line-height: 1.6; color: rgba(244, 239, 233, 0.55); }

/* --- FAQ --- */
.faq-item { border-top: 2px solid var(--evo-rule-ink); }
.faq-item__q { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding: 24px 0; background: none; border: 0; cursor: pointer; text-align: left; }
@media (min-width: 640px) { .faq-item__q { padding: 28px 0; } }
.faq-item__q-label { display: flex; align-items: baseline; gap: 16px; }
@media (min-width: 640px) { .faq-item__q-label { gap: 24px; } }
.faq-item__num { font-weight: 500; font-size: 14px; color: rgba(244, 239, 233, 0.4); }
.faq-item__text { font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--evo-bone); transition: color 180ms; }
@media (min-width: 640px) { .faq-item__text { font-size: 20px; } }
.faq-item__q:hover .faq-item__text { color: var(--evo-accent); }
.faq-item__icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex-shrink: 0; border: 2px solid rgba(244, 239, 233, 0.15); color: var(--evo-bone); transition: transform 250ms, background-color 180ms, border-color 180ms, color 180ms; }
.faq-item__icon svg { width: 16px; height: 16px; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); border-color: var(--evo-accent); background: var(--evo-accent); color: var(--evo-ink); }
.faq-item__a { max-width: 48rem; padding: 0 16px 28px 48px; font-size: 14px; line-height: 1.6; color: rgba(244, 239, 233, 0.6); }
@media (min-width: 640px) { .faq-item__a { padding-left: 72px; font-size: 16px; } }
.faq-item__a-wrap { display: none; }
.faq-item.is-open .faq-item__a-wrap { display: block; }

/* --- CTA (single orange field per page) --- */
.cta { background: var(--evo-accent); color: var(--evo-ink-deep); }
.cta__inner { padding-top: 96px; padding-bottom: 96px; }
@media (min-width: 1024px) { .cta__inner { padding-top: 144px; padding-bottom: 144px; } }
.cta__grid { margin-top: 24px; display: grid; gap: 40px; }
@media (min-width: 1024px) { .cta__grid { grid-template-columns: 8fr 4fr; gap: 64px; } }
.cta__title { color: var(--evo-ink-deep); }
.cta__side { display: flex; flex-direction: column; justify-content: flex-end; gap: 32px; }
.cta__body { font-size: 16px; line-height: 1.6; color: rgba(28, 18, 6, 0.7); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* --- Footer (light panel) --- */
.site-footer { border-top: 2px solid var(--evo-rule-light); background: var(--evo-bone); color: var(--evo-ink); overflow: hidden; }
.site-footer a { color: rgba(21, 19, 17, 0.7); transition: color 180ms; }
.site-footer a:hover { color: var(--evo-accent); }
.site-footer__top { padding-top: 64px; }
@media (min-width: 1024px) { .site-footer__top { padding-top: 96px; } }
.site-footer__grid { display: grid; gap: 48px; padding-bottom: 64px; }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 5fr 7fr; padding-bottom: 96px; } }
.site-footer__tagline { max-width: 24rem; font-weight: 700; font-size: 24px; line-height: 1.3; letter-spacing: -0.01em; }
.site-footer__tagline span { color: rgba(21, 19, 17, 0.5); }
.site-footer__desc { margin-top: 24px; max-width: 24rem; font-size: 14px; line-height: 1.6; color: rgba(21, 19, 17, 0.5); }
.site-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (min-width: 640px) { .site-footer__cols { grid-template-columns: repeat(3, 1fr); } }
.site-footer__col h3 { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(21, 19, 17, 0.4); margin: 0 0 20px; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col li { margin-bottom: 12px; font-size: 14px; color: rgba(21, 19, 17, 0.7); }
.site-footer__bottom { display: flex; flex-direction: column; gap: 12px; border-top: 2px solid var(--evo-rule-light); padding: 24px 0; font-size: 12px; color: rgba(21, 19, 17, 0.4); }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__wordmark { font-weight: 700; font-size: 27vw; line-height: 0.8; letter-spacing: -0.04em; text-align: center; color: rgba(21, 19, 17, 0.06); margin: 0 0 -0.16em; user-select: none; }
@media (min-width: 1024px) { .site-footer__wordmark { font-size: 22rem; } }

/* --- Boxed panel (who-for, transfer note, contact details) --- */
.boxed { border: 2px solid rgba(244, 239, 233, 0.12); padding: 28px; }
.boxed ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
@media (min-width: 640px) { .boxed ul { grid-template-columns: 1fr 1fr; column-gap: 32px; } }
.boxed li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(244, 239, 233, 0.7); }
.boxed li svg { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; color: var(--evo-accent); }

/* --- Other standards link rows --- */
.other-row { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.other-row__left { display: flex; align-items: baseline; gap: 24px; }
.other-row__code { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--evo-bone); transition: color 180ms; }
@media (min-width: 640px) { .other-row__code { font-size: 24px; } }
.other-row:hover .other-row__code { color: var(--evo-accent); }
.other-row__name { display: none; font-size: 14px; color: rgba(244, 239, 233, 0.5); }
@media (min-width: 640px) { .other-row__name { display: block; } }
.other-row__arrow { color: rgba(244, 239, 233, 0.4); }
.other-row__arrow svg { width: 20px; height: 20px; transition: transform 180ms, color 180ms; }
.other-row:hover .other-row__arrow svg { transform: translate(2px, -2px); color: var(--evo-accent); }

/* --- Overview / content --- */
.overview p { margin-top: 24px; font-size: 18px; line-height: 1.6; color: rgba(244, 239, 233, 0.65); }

/* --- Contact form --- */
.form-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field--full { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(244, 239, 233, 0.5); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; border: 2px solid rgba(244, 239, 233, 0.15); background: var(--evo-surface);
  padding: 14px 16px; font-size: 14px; color: var(--evo-bone); font-family: var(--evo-font);
  transition: border-color 180ms;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(244, 239, 233, 0.35); }
.form-field select { appearance: none; -webkit-appearance: none; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--evo-accent); outline: none; }
.form-actions { margin-top: 32px; }
.form-note { margin-top: 16px; font-size: 12px; color: rgba(244, 239, 233, 0.45); }
.form-error { border: 2px solid var(--evo-major); background: var(--evo-surface); padding: 16px 20px; color: var(--evo-bone); font-size: 14px; margin-bottom: 24px; }

/* --- Contact details box (light panel on contact page) --- */
.contact-details { background: var(--evo-bone); padding: 32px; color: var(--evo-ink); }
.contact-details ul { list-style: none; margin: 20px 0 0; padding: 0; }
.contact-details li { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; border-top: 2px solid var(--evo-rule-light); padding: 14px 0; }
.contact-details .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(21, 19, 17, 0.4); }
.contact-details .value { text-align: right; font-size: 14px; color: rgba(21, 19, 17, 0.8); }

/* --- Blog --- */
.blog-featured { display: grid; gap: 32px; }
@media (min-width: 1024px) { .blog-featured { grid-template-columns: 1fr 1fr; align-items: center; } }
.blog-featured__thumb { overflow: hidden; }
.blog-featured__thumb img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; transition: transform 700ms ease-out; }
.blog-featured:hover .blog-featured__thumb img { transform: scale(1.03); }
.blog-featured__title { margin-top: 16px; font-weight: 700; font-size: 30px; letter-spacing: -0.02em; color: var(--evo-bone); transition: color 180ms; }
@media (min-width: 640px) { .blog-featured__title { font-size: 36px; } }
.blog-featured:hover .blog-featured__title { color: var(--evo-accent); }
.blog-featured__excerpt { margin-top: 16px; max-width: 36rem; font-size: 16px; line-height: 1.6; color: rgba(244, 239, 233, 0.6); }
.post-meta { margin-top: 24px; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(244, 239, 233, 0.4); }
.blog-grid { display: grid; gap: 56px 24px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card .thumb { overflow: hidden; }
.blog-card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; transition: transform 700ms ease-out; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card__category { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--evo-accent); }
.blog-card__title { margin-top: 8px; font-weight: 600; font-size: 18px; line-height: 1.35; letter-spacing: -0.01em; color: var(--evo-bone); transition: color 180ms; }
.blog-card:hover .blog-card__title { color: var(--evo-accent); }
.blog-card__excerpt { margin-top: 10px; font-size: 14px; line-height: 1.6; color: rgba(244, 239, 233, 0.55); }
.blog-card .post-meta { margin-top: 16px; }

/* --- Blog article --- */
.article { padding-top: 144px; }
@media (min-width: 1024px) { .article { padding-top: 176px; } }
.article__head { max-width: 48rem; }
.article__back { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(244, 239, 233, 0.4); transition: color 180ms; }
.article__back:hover { color: var(--evo-accent); }
.article__title { margin-top: 20px; font-weight: 700; font-size: 36px; line-height: 1.05; letter-spacing: -0.02em; color: var(--evo-bone); }
@media (min-width: 640px) { .article__title { font-size: 48px; } }
.article__media { margin: 48px auto 0; max-width: 64rem; overflow: hidden; }
.article__media img { aspect-ratio: 16 / 8; width: 100%; object-fit: cover; }
.article__body { margin: 48px auto 0; max-width: 48rem; padding-bottom: 32px; }
@media (min-width: 1024px) { .article__body { padding-bottom: 64px; } }
.article__body p { margin-top: 24px; font-size: 18px; line-height: 1.6; color: rgba(244, 239, 233, 0.7); }
.article__body p:first-child { margin-top: 0; }
.article__body h2 { margin-top: 48px; font-weight: 700; font-size: 24px; letter-spacing: -0.01em; color: var(--evo-bone); }
.article__body h2:first-child { margin-top: 0; }
.article__byline { border-top: 1px solid var(--evo-rule-ink); padding-top: 24px; color: var(--evo-accent) !important; font-family: var(--evo-label-font); font-size: 14px !important; font-weight: 600; }
.keep-reading { border-top: 2px solid var(--evo-rule-ink); }
.keep-reading__grid { display: grid; gap: 48px 24px; }
@media (min-width: 640px) { .keep-reading__grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Logo lockup --- */
.block { display: block; }
.evo-lockup { display: block; width: min(100%, 172px); height: 58px; object-fit: contain; }

/* =====================================================================
   Motion
   ===================================================================== */
@keyframes evo-rise {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes evo-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero + page hero entrance (staggered on load) */
.hero__badge, .hero__title, .hero__lead, .hero__actions, .hero__media,
.page-hero__inner > * {
  opacity: 0;
  animation: evo-rise 700ms cubic-bezier(.21,.47,.32,.98) forwards;
}
.page-hero__inner .eyebrow        { animation-duration: 600ms; animation-delay: 50ms; }
.page-hero__inner .page-hero__title { animation-duration: 800ms; animation-delay: 150ms; }
.page-hero__inner .page-hero__grid  { animation-duration: 700ms; animation-delay: 300ms; }
.hero__badge   { animation-duration: 600ms; animation-delay: 0ms; }
.hero__title   { animation-duration: 800ms; animation-delay: 100ms; }
.hero__lead    { animation-duration: 700ms; animation-delay: 300ms; }
.hero__actions { animation-duration: 700ms; animation-delay: 400ms; }
.hero__media   { animation-duration: 900ms; animation-delay: 500ms; }

/* Scroll reveal (Stimulus adds .is-visible on intersect) */
.reveal { opacity: 1; transform: none; }
.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 380ms cubic-bezier(.21,.47,.32,.98), transform 380ms cubic-bezier(.21,.47,.32,.98);
}
.reveal-enabled .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero__badge, .hero__title, .hero__lead, .hero__actions, .hero__media,
  .page-hero__inner > *,
  .reveal { opacity: 1; transform: none; animation: none; transition: none; }
}

/* =====================================================================
   Agevia editorial redesign overrides
   ===================================================================== */
body.menu-open { overflow: hidden; }
mark { background: var(--evo-accent); color: var(--evo-ink); padding: 0 .08em; }
.section-kicker {
  display: flex; align-items: center; gap: 10px; margin-bottom: 44px;
  border-bottom: 1px solid var(--evo-rule-ink); padding-bottom: 10px;
  font-family: var(--evo-label-font); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; line-height: 1; text-transform: uppercase;
}
.section-kicker span { width: 7px; height: 7px; background: var(--evo-accent); }
.section-kicker--dark { border-color: var(--evo-rule-light); }

/* Grid navigation */
.site-header {
  height: 100px; display: grid; grid-template-columns: 220px minmax(0, 1fr) 220px; grid-template-rows: 28px 72px;
  align-items: stretch; border-bottom: 1px solid var(--evo-rule-ink);
  background: rgba(9, 10, 9, .94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.site-header.is-scrolled, .site-header.is-open { background: rgba(9, 10, 9, .98); border-bottom-color: var(--evo-rule-ink); }
.site-header__contacts { grid-column: 1 / -1; grid-row: 1; display: flex; align-items: center; justify-content: flex-end; gap: 22px; border-bottom: 1px solid var(--evo-rule-ink); padding: 0 28px; }
.site-header__contacts a { color: rgba(245, 243, 217, .7); font-family: var(--evo-label-font); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.site-header__contacts a:hover, .site-header__contacts a:focus-visible { color: var(--evo-accent); }
.site-header__logo { grid-row: 2; display: grid; place-items: center; padding: 7px 22px; border-right: 1px solid var(--evo-rule-ink); color: var(--evo-bone); overflow: visible; }
.site-nav { grid-row: 2; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0; }
.site-nav__link, .nav-dropdown__toggle {
  min-width: 0; display: flex; align-items: center; justify-content: center; gap: 5px;
  border-right: 1px solid var(--evo-rule-ink); padding: 0 10px; color: var(--evo-accent);
  font-size: 14px; opacity: 1; transition: background-color 180ms, color 180ms;
}
.site-nav__link:hover, .site-nav__link.is-active, .nav-dropdown__toggle:hover, .nav-dropdown__toggle.is-active {
  background: var(--evo-accent); color: var(--evo-ink); opacity: 1;
}
.nav-dropdown { min-width: 0; }
.nav-dropdown__toggle .btn-icon { width: 13px; }
.nav-dropdown__menu { padding-top: 0; left: 0; transform: none; width: 340px; }
.nav-dropdown__panel { width: 100%; border: 1px solid var(--evo-rule-ink); background: var(--evo-ink); padding: 10px; }
.nav-dropdown__item { padding: 13px 14px; }
.nav-dropdown__all { color: var(--evo-accent); }
.header-cta { grid-row: 2; display: grid; place-items: center; padding: 11px 42px 11px 16px; }
.header-cta .evo-btn { width: 100%; height: 100%; justify-content: space-between; }
.header-burger, .mobile-menu { display: none; }

/* Full-bleed homepage hero */
.hero { min-height: 800px; padding: 0; position: relative; overflow: hidden; }
.hero__backdrop, .hero__overlay { position: absolute; inset: 0; }
.hero__backdrop img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(.75); }
.hero__overlay {
  background: linear-gradient(90deg, rgba(4, 6, 5, .9), rgba(4, 6, 5, .22) 68%, rgba(4, 6, 5, .58)),
              linear-gradient(0deg, rgba(4, 6, 5, .68), transparent 56%);
}
.hero__inner {
  position: relative; z-index: 1; min-height: 800px; max-width: 80rem; padding-top: 178px; padding-bottom: 68px;
  display: grid; grid-template-columns: 1.15fr .75fr; gap: 68px; align-items: end; text-align: left;
}
.hero__primary { min-width: 0; }
.hero__badge {
  display: inline-block; border: 0; background: rgba(18, 20, 18, .76); padding: 7px 9px;
  color: var(--evo-accent); font-family: var(--evo-label-font); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
}
.hero__badge span { color: var(--evo-accent); }
.hero__title { margin: 26px 0 0; font-size: clamp(58px, 7vw, 94px); line-height: .83; letter-spacing: -.07em; font-weight: 500; }
.hero__actions { margin-top: 38px; flex-direction: row; justify-content: flex-start; align-items: stretch; }
.hero__secondary { align-self: end; padding-bottom: 34px; text-align: right; }
.hero__lead { margin: 0; max-width: none; color: var(--evo-accent); font-size: clamp(20px, 2vw, 28px); line-height: 1.18; }
.hero__note { margin: 24px 0 0 auto; max-width: 31rem; color: rgba(245, 243, 217, .55); font-family: var(--evo-label-font); font-size: 11px; line-height: 1.6; letter-spacing: .11em; text-transform: uppercase; }

.trust-strip { background: var(--evo-accent); border: 0; padding: 12px 0; }
.trust-strip__item { color: var(--evo-ink); font-family: var(--evo-label-font); font-size: 12px; }
.trust-strip__sep { color: var(--evo-ink); }

/* Homepage opening */
.roadblocks { overflow: hidden; display: grid; align-content: center; }
.roadblocks__inner { width: min(760px, 100%); text-align: center; }
.roadblocks__inner h2 { margin-top: 16px; }
.roadblocks__inner > p:last-child { margin: 24px auto 44px; color: rgba(9, 10, 9, .68); font-size: 18px; }
.question-ticker { width: 112%; margin-left: -6%; display: grid; gap: 9px; mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent); }
.question-ticker div { display: flex; justify-content: center; gap: 9px; }
.question-ticker div:nth-child(2) { transform: translateX(-48px); }
.question-chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(9, 10, 9, .055); border: 1px solid transparent; padding: 7px 11px; color: rgba(9, 10, 9, .78); white-space: nowrap; transition: background-color 180ms, border-color 180ms, color 180ms; }
.question-chip .btn-icon { width: 13px; height: 13px; }
.question-chip:hover, .question-chip:focus-visible { background: var(--evo-ink); border-color: var(--evo-ink); color: var(--evo-accent); outline: none; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--evo-rule-light); }
.value-card { min-height: 260px; padding: 38px clamp(24px, 3.8vw, 52px); border-right: 1px dashed var(--evo-rule-light); }
.value-card:last-child { border: 0; }
.value-card__mark { font-family: var(--evo-label-font); font-size: 42px; color: rgba(9, 10, 9, .28); }
.value-card h3 { margin-top: 38px; font-size: 24px; font-weight: 600; }
.value-card p { color: rgba(9, 10, 9, .68); font-size: 16px; line-height: 1.5; }

/* About editorial */
.about-editorial__intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: start; }
.about-editorial__intro h2 { font-weight: 500; }
.about-editorial__copy { font-size: 19px; color: rgba(245, 243, 217, .68); }
.about-editorial__copy p + p { margin-top: 18px; }
.about-editorial__copy .evo-btn { margin-top: 26px; }
.editorial-features { display: grid; grid-template-columns: repeat(3, 1fr); margin: 80px 0; }
.editorial-features article { padding: 0 28px; border-left: 1px dashed var(--evo-rule-ink); }
.editorial-features h3 { background: var(--evo-surface); padding: 8px 10px; color: var(--evo-accent); font-family: var(--evo-label-font); font-size: 15px; letter-spacing: .01em; }
.editorial-features p { color: rgba(245, 243, 217, .58); font-size: 15px; }
.editorial-media { position: relative; aspect-ratio: 16/7; overflow: hidden; border: 1px solid var(--evo-rule-ink); }
.editorial-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 55%); pointer-events: none; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-media__caption { position: absolute; z-index: 1; inset: auto 30px 24px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.editorial-media__caption span { font-size: clamp(26px, 4vw, 56px); font-weight: 600; letter-spacing: -.05em; }
.editorial-media__caption a { color: var(--evo-accent); font-family: var(--evo-label-font); font-size: 12px; text-transform: uppercase; }

/* Standards as stacked service panels */
.standards-showcase__title { max-width: 980px; margin-bottom: 64px; color: var(--evo-ink); font-weight: 500; }
.standard-stack { display: grid; gap: 18px; }
.standard-panel { position: relative; background: var(--evo-sand); border: 1px solid var(--evo-rule-light); padding: 44px; color: var(--evo-ink); }
.standard-panel__intro { display: grid; grid-template-columns: 105px 1fr; gap: 30px; }
.standard-panel__num { width: 82px; height: 82px; display: grid; place-items: center; background: rgba(9, 10, 9, .07); font-family: var(--evo-label-font); font-size: 24px; }
.standard-panel h3 { font-size: clamp(28px, 3vw, 38px); font-weight: 600; }
.standard-panel__intro p:last-child { max-width: 640px; color: rgba(9, 10, 9, .68); }
.standard-panel__body { display: grid; grid-template-columns: 1.15fr 1fr; gap: 42px; margin-top: 38px; }
.standard-panel__image { min-height: 290px; overflow: hidden; background: var(--evo-ink); }
.standard-panel__image img { width: 100%; height: 100%; min-height: 290px; object-fit: cover; filter: grayscale(.9) contrast(1.1); }
.standard-panel ol { counter-reset: focus; list-style: none; margin: 0; padding: 0 0 54px; }
.standard-panel li { counter-increment: focus; border-bottom: 1px solid var(--evo-rule-light); padding: 11px 0; font-family: var(--evo-label-font); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.standard-panel li::before { content: "0" counter(focus); margin-right: 14px; color: rgba(9, 10, 9, .42); }
.standard-panel__link { position: absolute; right: 44px; bottom: 34px; display: inline-flex; align-items: center; gap: 8px; color: var(--evo-ink); border-bottom: 1px solid var(--evo-ink); padding-bottom: 4px; font-family: var(--evo-label-font); font-size: 12px; text-transform: uppercase; }
.standard-panel__link svg { width: 15px; }

/* Industries and process */
.industries-section .section-heading { margin-bottom: 50px; }
.industries-grid--home { margin-bottom: 44px; }
.industry-card { display: block; }
.industry-card--linked:focus-visible { outline: 2px solid var(--evo-accent); outline-offset: 5px; }
.industry-card__read { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--evo-accent); font-family: var(--evo-label-font); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.industry-card__read .btn-icon { width: 14px; height: 14px; transition: transform 180ms; }
.industry-card--linked:hover .industry-card__read .btn-icon { transform: translate(2px, -2px); }
.industry-detail__intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.industry-detail__media { min-height: 460px; overflow: hidden; }
.industry-detail__media img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; filter: grayscale(.75) contrast(1.08); }
.industry-detail__copy h2 { margin-top: 18px; }
.industry-detail__copy > p:last-child { margin-top: 24px; color: rgba(245, 243, 217, .62); font-size: 18px; line-height: 1.6; }
.industry-detail__process { border-top: 1px solid var(--evo-rule-ink); }
.process-scene { padding-top: 44px; }
.process-scene > .container-site > h2 { margin-bottom: 76px; font-weight: 500; }
.process-orbit { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--evo-rule-ink); border-radius: 50% 50% 0 0 / 20% 20% 0 0 !important; padding: 112px 18px 54px; background: radial-gradient(ellipse at 50% 100%, #1c1e1c, var(--evo-ink) 70%); }
.process-orbit__step { min-width: 0; padding: 0 20px; border-right: 1px solid var(--evo-rule-ink); }
.process-orbit__step:last-child { border: 0; }
.process-orbit__step > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 46px; border: 1px solid var(--evo-accent); border-radius: 50% !important; color: var(--evo-accent); font-family: var(--evo-label-font); }
.process-orbit__step h3 { color: var(--evo-accent); font-size: 20px; font-weight: 600; }
.process-orbit__step p { color: rgba(245, 243, 217, .54); font-size: 13px; line-height: 1.55; }
.process-scene > .container-site > .evo-btn { margin-top: 40px; }

/* Verified metrics and comparison */
.verified-numbers h2 { color: var(--evo-ink); max-width: 900px; font-weight: 500; }
.verified-numbers .container-site .container-site { max-width: none; padding-inline: 0; }
.verified-numbers .stats-row { margin-top: 46px; background: var(--evo-ink); padding: 32px 22px; gap: 8px; }
.verified-numbers .stats-row__item { min-height: 230px; padding: 24px; background: var(--evo-surface); display: flex; flex-direction: column; justify-content: flex-end; }
.verified-numbers .stats-row__value { color: var(--evo-accent); font-size: clamp(68px, 8vw, 104px); font-weight: 500; }
.verified-numbers .stats-row__label { color: var(--evo-bone); }
.comparison__intro { display: grid; grid-template-columns: 1.25fr .55fr; gap: 80px; align-items: end; }
.comparison__intro h2 { font-weight: 500; }
.comparison__intro > p { color: rgba(245, 243, 217, .55); }
.comparison__head { margin: 58px 0 12px; display: grid; grid-template-columns: 240px 1fr 1fr; gap: 10px; }
.comparison__head strong { padding: 12px 18px; background: var(--evo-surface); color: var(--evo-accent); font-family: var(--evo-label-font); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.comparison__table { display: grid; gap: 17px; }
.comparison__table > div { display: grid; grid-template-columns: 240px 1fr 1fr; gap: 10px; }
.comparison__table b { align-self: start; padding: 10px 0; color: var(--evo-accent); font-family: var(--evo-label-font); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.comparison__table span { background: var(--evo-surface); padding: 16px 18px; color: rgba(245, 243, 217, .62); }
.comparison__table span:last-child { color: var(--evo-bone); }

/* FAQ and insights */
.faq-section h2 { margin-top: 18px; font-weight: 500; }
.faq-section__lead { margin: 24px 0 30px; color: rgba(245, 243, 217, .55); }
.faq-item { border: 0; background: var(--evo-bone); color: var(--evo-ink); margin-bottom: 16px; }
.faq-item__q { min-height: 104px; padding: 24px; }
.faq-item__num { color: rgba(9, 10, 9, .42); font-family: var(--evo-label-font); }
.faq-item__text { color: var(--evo-ink); font-weight: 500; }
.faq-item__q:hover .faq-item__text { color: var(--evo-ink); }
.faq-item__icon { border-color: rgba(9, 10, 9, .22); color: var(--evo-ink); }
.faq-item.is-open .faq-item__icon { background: var(--evo-ink); border-color: var(--evo-ink); color: var(--evo-accent); }
.faq-item__a-wrap { display: grid; grid-template-rows: 0fr; background: var(--evo-accent); transition: grid-template-rows 320ms ease; overflow: hidden; }
.faq-item.is-open .faq-item__a-wrap { display: grid; grid-template-rows: 1fr; }
.faq-item__a { min-height: 0; overflow: hidden; padding: 0 28px; color: rgba(9, 10, 9, .76); }
.faq-item.is-open .faq-item__a { padding-top: 22px; padding-bottom: 26px; }
.home-insights__head { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.home-insights h2 { color: var(--evo-ink); max-width: 920px; font-weight: 500; }
.home-insights .evo-btn--link { color: var(--evo-ink); border-color: var(--evo-ink); }
.home-insights .blog-grid { margin-top: 56px; }
.home-insights .blog-card { min-height: 500px; display: flex; flex-direction: column; background: var(--evo-ink); }
.home-insights .blog-card .thumb img { aspect-ratio: 16/9; }
.blog-card__content { flex: 1; padding: 26px; display: flex; flex-direction: column; }
.home-insights .blog-card__title { font-size: 24px; }
.blog-card__read { margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; color: var(--evo-accent); font-family: var(--evo-label-font); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.blog-card__read svg { width: 16px; }

/* Page heroes and full-site consistency */
.page-hero { padding-top: 150px; background: radial-gradient(circle at 78% 10%, rgba(221, 255, 114, .13), transparent 28%); }
.page-hero__inner { padding-bottom: 72px; border-bottom: 1px solid var(--evo-rule-ink); }
.page-hero__title { font-size: clamp(52px, 7vw, 94px); font-weight: 500; line-height: .94; letter-spacing: -.06em; }
.page-hero__body { color: rgba(245, 243, 217, .62); }
.services-row, .process-step, .num-row, .other-row { border-top-width: 1px; }
.services-row:hover { background: var(--evo-accent); }
.services-row:hover .services-row__num, .services-row:hover .services-row__code, .services-row:hover .services-row__name, .services-row:hover .services-row__desc { color: var(--evo-ink); }
.industries-grid { gap: 36px 18px; }
.industry-card { border-top: 1px solid var(--evo-rule-ink); padding-top: 14px; }
.industry-card .thumb { background: var(--evo-surface); }
.industry-card img { filter: grayscale(.8) contrast(1.08); }
.panel-light { background: var(--evo-bone); }
.cta { background: var(--evo-accent); }
.cta .eyebrow { color: rgba(9, 10, 9, .65); }
.cta__title { font-weight: 500; }

/* Redesigned footer */
.site-footer { overflow: hidden; border: 0; background: var(--evo-ink); color: var(--evo-bone); }
.site-footer__contact { min-height: 112px; margin-top: 88px; display: flex; align-items: center; justify-content: space-between; gap: 36px; background: var(--evo-accent); color: var(--evo-ink); padding: 26px 30px; }
.site-footer__contact p { max-width: 520px; font-size: 18px; }
.site-footer__details { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; background: var(--evo-surface); }
.site-footer__details > div { min-height: 160px; padding: 26px; border-right: 1px solid var(--evo-rule-ink); }
.site-footer__details > div:last-child { border: 0; }
.site-footer__details span, .site-footer__col h3 { display: block; margin-bottom: 20px; color: var(--evo-accent); font-family: var(--evo-label-font); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.site-footer__details p, .site-footer__details a { color: rgba(245, 243, 217, .58); font-size: 14px; }
.site-footer__grid { grid-template-columns: 2fr repeat(3, 1fr); gap: 54px; padding: 82px 0; }
.site-footer__brand p { margin-top: 28px; font-size: 24px; font-weight: 600; line-height: 1.3; }
.site-footer__brand p span { color: rgba(245, 243, 217, .45); }
.site-footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.site-footer__col h3 { margin: 0 0 8px; }
.site-footer__col a, .site-footer__col p { color: rgba(245, 243, 217, .55); font-size: 14px; }
.site-footer__col a:hover, .site-footer__quote { color: var(--evo-accent); }
.site-footer__bottom { border-color: var(--evo-rule-ink); color: rgba(245, 243, 217, .38); }
.site-footer__wordmark { color: rgba(245, 243, 217, .045); }
.site-footer__details a, .contact-details a { color: inherit; text-decoration: underline; text-decoration-color: rgba(184, 255, 44, .45); text-underline-offset: 3px; }
.site-footer__details a:hover, .site-footer__details a:focus-visible, .contact-details a:hover, .contact-details a:focus-visible { color: var(--evo-accent); }
.site-footer__brand .evo-lockup { width: 220px; height: 94px; }

/* Homepage sections use a tighter rhythm than long-form inner pages. */
.home-section.section-lg { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 1024px) { .home-section.section-lg { padding-top: 88px; padding-bottom: 88px; } }

/* Responsive */
@media (max-width: 1180px) {
  .site-header { grid-template-columns: 190px minmax(0, 1fr) 185px; }
  .site-nav__link, .nav-dropdown__toggle { font-size: 12px; }
  .header-cta { padding-right: 18px; }
  .process-orbit { grid-template-columns: repeat(3, 1fr); border-radius: 220px 220px 0 0 !important; }
  .process-orbit__step { min-height: 260px; margin-bottom: 30px; }
  .process-orbit__step:nth-child(3) { border: 0; }
}

@media (max-width: 1023px) {
  .site-header { height: 64px; grid-template-columns: 1fr auto; grid-template-rows: 64px; padding-inline: 18px; }
  .site-header__contacts { display: none; }
  .site-header__logo { grid-row: 1; justify-self: start; border: 0; padding: 5px 0; }
  .site-header__logo .evo-lockup { width: 148px; height: 52px; }
  .site-nav, .header-cta { display: none; }
  .header-burger { grid-row: 1; display: grid; place-items: center; width: 46px; padding: 0; }
  .header-burger .btn-icon { width: 25px; height: 25px; }
  .mobile-menu { position: fixed; z-index: 51; inset: 64px 0 0; height: calc(100dvh - 64px); overflow-y: auto; background: var(--evo-ink); transform: translateX(100%); transition: transform 320ms ease; display: block; }
  .mobile-menu.is-open { transform: none; }
  .mobile-menu__inner { width: min(100% - 28px, 620px); margin: 0 auto; padding: 20px 0 36px; display: flex; flex-direction: column; }
  .mobile-menu__link { border-bottom: 1px solid var(--evo-rule-ink); padding: 14px 10px; color: var(--evo-accent); font-size: 20px; }
  .mobile-menu__standards { padding: 30px 10px 10px; }
  .mobile-menu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .mobile-menu__std { border-bottom: 1px solid var(--evo-rule-ink); padding: 10px 0; color: rgba(245, 243, 217, .58); }
  .mobile-menu__contacts { display: grid; gap: 8px; padding: 24px 10px 0; }
  .mobile-menu__contacts a { color: var(--evo-bone); font-family: var(--evo-label-font); font-size: 14px; }
  .mobile-menu__cta { margin-top: 24px; }
  .about-editorial__intro { gap: 48px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: 0; }
  .comparison__head, .comparison__table > div { grid-template-columns: 190px 1fr 1fr; }
}

@media (max-width: 767px) {
  .section-lg { padding-top: 78px; padding-bottom: 78px; }
  .display-lg, .heading-lg { font-size: clamp(38px, 11vw, 54px); }
  .hero, .hero__inner { min-height: 780px; }
  .hero__inner { grid-template-columns: 1fr; align-content: end; gap: 22px; padding-top: 112px; padding-bottom: 48px; }
  .hero__title { font-size: clamp(52px, 15vw, 72px); }
  .hero__secondary { padding: 0; text-align: left; }
  .hero__lead { font-size: 18px; }
  .hero__note { margin-left: 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .evo-btn { width: 100%; }
  .question-ticker { width: 100%; margin-left: 0; padding-inline: 18px; mask-image: none; }
  .question-ticker div { flex-wrap: wrap; transform: none; }
  .question-chip { white-space: normal; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 260px; border-right: 0; border-bottom: 1px dashed var(--evo-rule-light); }
  .about-editorial__intro, .comparison__intro, .home-insights__head { grid-template-columns: 1fr; gap: 28px; }
  .editorial-features { grid-template-columns: 1fr; }
  .editorial-features { gap: 28px; }
  .editorial-media { aspect-ratio: 5/4; }
  .editorial-media__caption { inset: auto 18px 18px; flex-direction: column; align-items: flex-start; }
  .standard-panel { padding: 26px; }
  .standard-panel__intro, .standard-panel__body { grid-template-columns: 1fr; gap: 24px; }
  .standard-panel__image, .standard-panel__image img { min-height: 220px; }
  .standard-panel__link { position: static; margin-top: 26px; }
  .process-orbit { grid-template-columns: 1fr; padding: 76px 20px 20px; border-radius: 150px 150px 0 0 !important; }
  .process-orbit__step { min-height: 0; padding: 26px 10px; margin: 0; border-right: 0; border-bottom: 1px solid var(--evo-rule-ink); }
  .process-orbit__step:nth-child(3) { border-bottom: 1px solid var(--evo-rule-ink); }
  .process-orbit__step > span { margin-bottom: 22px; }
  .verified-numbers .stats-row { grid-template-columns: 1fr; padding: 12px; }
  .verified-numbers .stats-row__item { min-height: 230px; border: 0; }
  .comparison__head { display: none; }
  .comparison__table > div { grid-template-columns: 1fr; gap: 0; }
  .comparison__table b { margin-top: 12px; }
  .comparison__table span { border-bottom: 2px solid var(--evo-ink); }
  .industry-detail__intro { grid-template-columns: 1fr; gap: 34px; }
  .industry-detail__media, .industry-detail__media img { min-height: 300px; }
  .faq-section .split { grid-template-columns: 1fr; }
  .home-insights .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 120px; }
  .page-hero__title { font-size: clamp(48px, 13vw, 68px); }
  .site-footer__contact { flex-direction: column; align-items: flex-start; margin-top: 58px; }
  .site-footer__details { grid-template-columns: 1fr; }
  .site-footer__details > div { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--evo-rule-ink); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1/-1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .animate-marquee { animation: none; }
  .question-ticker div { transform: none; }
  .faq-item__a-wrap { transition: none; }
}
