/* ============================================================
   Blade theme — main stylesheet
   ============================================================ */

/* ----- Fonts -----
   Switzer (Fontshare, free for commercial use) — a neutral Helvetica-lineage
   grotesque standing in for the Figma's `Lay Grotesk - Trial` (commercial-only).
   To swap to licensed Lay Grotesk later: replace these @font-face srcs + the
   --blade-font value + the spec's expected fontFamily, then re-run the gate. */
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/switzer-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/switzer-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/switzer-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/switzer-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ----- Design tokens (extracted from the Blade Platforms Figma, file fTMz9rBSiQOMQnZXzxJn61) ----- */
:root {
  --blade-font: 'Switzer', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Core palette (Figma globalVars) */
  --blade-bg: #ffffff;
  --blade-fg: #000000;               /* black */
  --blade-blue: #1C5BF9;             /* primary accent — buttons */
  --blade-primary: #1C5BF9;
  --blade-primary-fg: #ffffff;
  --blade-gray-1: #F5F5F5;
  --blade-gray-2: #E6E6E6;
  --blade-gray-3: #D9D9D9;
  --blade-gray-4: #808080;
  --blade-border: #E6E6E6;
  --blade-radius: 4px;
  --blade-text-primary: #ffffff;
  --blade-text-secondary: rgba(255,255,255,0.7);

  /* Layout — desktop 1440 frame: 1392 content @ 24px gutters; mobile 360 frame:
     320 content @ 20px gutters (hero/divider/intro all sit at x20). */
  --blade-container-max: 1440px;
  --blade-container-pad: 20px;
  --blade-container-pad-lg: 24px;
  --blade-nav-h: 80px;     /* mobile: logo 40px @ y20 (+20 bottom) — frame 58:477 */
  --blade-nav-h-lg: 68px;  /* desktop: inner row 48px @ y20 — node 124:7888 */
  --blade-utility-h: 42px; /* desktop top utility bar (audit accommodation; collapses on scroll) */

  /* Section surfaces (reskinned per-section as the build reaches each one) */
  --blade-surface-1: #000000;
  --blade-section-dark: #000000;
  --blade-section-light: #F5F5F5;
  --blade-surface-2: #2b2d36;
  --blade-card-dark: #202129;
  --blade-card-border: #303138;
  --blade-light-bg: #F5F5F5;
  --blade-fg-on-dark: #ffffff;
  --blade-fg-on-dark-2: #939aa9;
  --blade-fg-on-dark-3: #5d5e71;
}

/* ----- Reset + base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--blade-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--blade-fg);
  background: var(--blade-bg);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: var(--blade-font); font-weight: 600; line-height: 1.2; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ----- Container ----- */
.container {
  max-width: var(--blade-container-max);
  margin: 0 auto;
  padding: 0 var(--blade-container-pad);
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--blade-container-pad-lg); }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 200ms, border-color 200ms, color 200ms, transform 200ms;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--blade-primary);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--blade-primary);
  color: var(--blade-primary-fg);
}
.btn--primary:hover { background: rgba(10,10,10,0.85); }
.btn--secondary {
  background: transparent;
  border-color: var(--blade-primary);
  color: var(--blade-primary);
}
.btn--secondary:hover { background: rgba(10,10,10,0.05); }
.btn--ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--blade-text-primary);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); }
/* White-on-dark pill (Figma button component 56:449): white bg, black uppercase
   label 14/24/600, 42px tall, 4px radius. Used by the nav Contact us + MENU. */
.btn--contrast {
  height: 42px;
  padding: 0 16px;
  font-family: var(--blade-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
}
.btn--contrast:hover { background: var(--blade-gray-2); }

/* Light header inverts ghost button colors */
.site-header--light .btn--ghost {
  background: transparent;
  border-color: var(--blade-primary);
  color: var(--blade-primary);
  backdrop-filter: none;
}
.site-header--light .btn--ghost:hover { background: rgba(10,10,10,0.05); }

/* ============================================================
   Site header / navigation
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 300ms, border-color 300ms, transform 300ms;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header--scrolled.site-header--dark {
  background: rgba(10,10,10,0.95);
  border-bottom-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
/* Inner pages with NO full-bleed hero (image/video): a solid black header from
   the start. The only logo asset is the white wordmark, so a black bar keeps the
   logo + nav legible instead of vanishing on the white page. */
.site-header--light {
  background: #0a0a0a;
  border-bottom-color: rgba(255,255,255,0.1);
}
.site-header--scrolled.site-header--light {
  background: rgba(10,10,10,0.98);
  border-bottom-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

/* ----- Top utility bar (audit accommodation: instant contact). Desktop only;
   collapses once the header goes --scrolled. White content over the dark/hero
   header. Mobile shows the same links inside the menu overlay. ----- */
.site-header__utility { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 300ms ease, opacity 200ms ease; }
.site-header__utility-inner { max-width: var(--blade-container-max); margin: 0 auto; padding: 9px var(--blade-container-pad) 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header__utility-contact { display: flex; align-items: center; gap: 28px; }
.site-header__utility-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--blade-font); font-size: 13px; font-weight: 500; line-height: 1; color: rgba(255,255,255,0.82); text-decoration: none; transition: color .2s ease; }
.site-header__utility-link:hover { color: #fff; }
.site-header__utility-ico { display: inline-flex; width: 15px; height: 15px; opacity: 0.7; }
.site-header__utility-ico svg { width: 100%; height: 100%; }
.site-header__utility-social { display: flex; align-items: center; gap: 16px; }
.site-header__utility-soc { display: inline-flex; width: 16px; height: 16px; color: rgba(255,255,255,0.82); transition: color .2s ease; }
.site-header__utility-soc:hover { color: #fff; }
.site-header__utility-soc svg { width: 100%; height: 100%; }
.site-header__utility-ipaf { height: 22px; width: auto; margin-left: 10px; display: inline-block; }
.site-header__mobile-utility { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.site-header__mobile-utility .site-header__utility-social { margin-top: 4px; gap: 20px; }
@media (min-width: 1024px) {
  .site-header__utility { max-height: var(--blade-utility-h); opacity: 1; }
  .site-header__utility-inner { padding-left: var(--blade-container-pad-lg); padding-right: var(--blade-container-pad-lg); }
  .site-header--scrolled .site-header__utility { max-height: 0; opacity: 0; }
  .site-header__mobile-utility { display: none; }
}

.site-header__inner {
  max-width: var(--blade-container-max);
  margin: 0 auto;
  /* Figma: content row sits at y20 inside the bar (both frames). */
  padding: 20px var(--blade-container-pad) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--blade-nav-h);
  box-sizing: border-box;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .site-header__inner {
    padding: 20px var(--blade-container-pad-lg) 0;
    height: var(--blade-nav-h-lg);
  }
}
/* Scrolled pill-bar state (not specified in Figma, which only draws the page-top
   state): center the content vertically inside the dark bar. */
.site-header--scrolled .site-header__inner { padding-top: 0; }
/* Inner pages (no full-bleed hero) show a SOLID bar from the top, so the content
   row must sit centered in the bar — the Figma's y20 top offset is for the
   transparent hero nav floating over the hero, not a solid bar. Without this the
   row reads ~9px low (32px of black above, 13px below). */
.site-header--light .site-header__inner { padding-top: 0; }

/* Logo: 117×40 mobile (58:477), 142×48 desktop (124:7888). Explicit boxes —
   the two frames' boxes differ a hair in ratio; contain absorbs the sub-pixel.
   flex-shrink:0 guards against the flexbox/max-width:100% collapse when the
   menu is long (seen with the imported live menu — anchor squeezed to 0). */
.site-header__logo { flex-shrink: 0; }
.site-header__logo img { width: 117px; height: 40px; object-fit: contain; }
@media (min-width: 1024px) {
  .site-header__logo img { width: 142px; height: 48px; }
}

.site-header__nav { display: none; }
@media (min-width: 1024px) {
  .site-header__nav { display: block; flex: 1; }
  .site-header__menu { display: flex; justify-content: center; align-items: center; gap: 40px; list-style: none; margin: 0; padding: 0; }
  .site-header__item { position: relative; }
  .site-header__link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 24px;
    text-transform: uppercase; color: inherit; background: none; border: 0; padding: 0; margin: 0;
    cursor: pointer; text-decoration: none; transition: color 200ms;
  }
  .site-header__chev { flex: none; transition: transform 200ms; }
  .site-header__item--has-menu:hover .site-header__chev,
  .site-header__item--has-menu.is-open .site-header__chev { transform: rotate(180deg); }
  /* hover bridge so the gap between item and panel doesn't drop the hover */
  .site-header__item--has-menu::after { content: ""; position: absolute; left: -12px; right: -12px; top: 100%; height: 18px; }
  .site-header__panel {
    position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(-6px);
    min-width: 240px; background: #0a0a0a;   /* fully opaque — must stay readable over any section */
    border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 180ms, transform 180ms; z-index: 60;
  }
  .site-header__item--has-menu:hover .site-header__panel,
  .site-header__item--has-menu.is-open .site-header__panel {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .site-header__sub { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
  .site-header__sub--cols { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; min-width: 480px; }
  /* Scope link/label color under .site-header__panel (0,2,0) so it beats Elementor's
     global `.elementor-kit-NNNN a` rule (0,1,1) that otherwise forces these black. */
  .site-header__panel .site-header__sub-link {
    display: block; padding: 9px 12px; border-radius: 6px; white-space: nowrap;
    font-family: var(--blade-font); font-size: 14px; font-weight: 500; line-height: 20px; text-transform: none;
    color: rgba(255,255,255,0.92); text-decoration: none; transition: background 150ms, color 150ms;
  }
  .site-header__panel .site-header__sub-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
  .site-header__panel .site-header__sub-label {
    padding: 10px 12px 4px; font-family: var(--blade-font); font-size: 12px; font-weight: 600; line-height: 16px;
    text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.55);
  }
  .site-header__sub--cols .site-header__sub-label { grid-column: 1 / -1; }
  /* 3rd level (News / Press → Elevated Standards Series, Press) — indented under its parent */
  .site-header__subsub { list-style: none; margin: 6px 0 2px; padding: 0 0 0 14px; display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,0.18); }
  .site-header__panel .site-header__subsub-link { display: block; padding: 6px 0; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color .15s; }
  .site-header__panel .site-header__subsub-link:hover { color: #fff; }
}

/* Variant link colors */
.site-header--dark .site-header__link { color: var(--blade-text-primary); }
.site-header--dark .site-header__link:hover { color: var(--blade-text-secondary); }
.site-header--light .site-header__link { color: #ffffff; }
.site-header--light .site-header__link:hover { color: rgba(255,255,255,0.6); }

.site-header__cta { display: none; gap: 0.5rem; align-items: center; }
@media (min-width: 1024px) { .site-header__cta { display: flex; } }
.site-header__contact { width: 140px; padding: 0; }  /* Figma 140×42 fixed */

/* Mobile toggle = the Figma white MENU pill (58:507), not a hamburger. */
.site-header__toggle { border: 0; }
@media (min-width: 1024px) { .site-header__toggle { display: none; } }

/* ----- Mobile full-screen menu (covers viewport, accordion submenus) ----- */
.site-header__mobile { position: fixed; inset: 0; z-index: 200; background: #0a0a0a; color: #fff; display: flex; flex-direction: column; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.site-header__mobile[hidden] { display: none; }
.site-header__mobile-bar { display: flex; align-items: center; justify-content: space-between; height: var(--blade-nav-h); padding: 0 var(--blade-container-pad); flex: none; }
.site-header__mobile-close { background: none; border: 0; color: #fff; padding: 8px; margin: -8px; cursor: pointer; line-height: 0; }
.site-header__mobile-nav { display: flex; flex-direction: column; flex: 1; padding: 8px var(--blade-container-pad) 32px; }
.site-header__mobile-menu { list-style: none; margin: 0; padding: 0; }
.site-header__mobile-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-header__mobile-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 20px 0; background: none; border: 0; color: #fff; text-align: left; cursor: pointer; text-decoration: none; font-family: var(--blade-font); font-size: 22px; font-weight: 600; line-height: 1.1; text-transform: none; }
.site-header__mobile-chev { flex: none; color: rgba(255,255,255,0.6); transition: transform 200ms; }
.site-header__mobile-link--toggle[aria-expanded="true"] .site-header__mobile-chev { transform: rotate(180deg); }
.site-header__mobile-sub { list-style: none; margin: 0; padding: 0 0 16px; }
.site-header__mobile-sub[hidden] { display: none; }
.site-header__mobile-sub-link { display: block; padding: 12px 0 12px 16px; color: rgba(255,255,255,0.75); font-size: 17px; text-decoration: none; }
.site-header__mobile-sub-label { padding: 12px 0 4px; font-family: var(--blade-font); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.45); }
.site-header__mobile-subsub { list-style: none; margin: 0 0 8px; padding: 0 0 0 16px; display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,0.18); }
.site-header__mobile-subsub-link { display: block; padding: 10px 0 10px 16px; color: rgba(255,255,255,0.6); font-size: 15px; text-decoration: none; }
.site-header__mobile-cta { margin-top: auto; padding-top: 24px; display: flex; }
.site-header__mobile-cta .btn { flex: 1; height: 52px; }
@media (min-width: 1024px) { .site-header__mobile { display: none !important; } }
body.nav-open { overflow: hidden; }

/* Push content below the fixed header. A dark video hero is intentionally
   full-bleed under the transparent nav (nav-dark → no padding); every other
   page leads with a non-hero section that must clear the fixed nav. The
   nav-{variant} body class is set in functions.php. */
main { padding-top: 0; }
body.nav-light main { padding-top: var(--blade-nav-h); }
@media (min-width: 1024px) {
  body.nav-light main { padding-top: calc(var(--blade-nav-h-lg) + var(--blade-utility-h)); }
}

/* ============================================================
   Site footer
   ============================================================ */
/* Blade footer (Figma 56:416 desktop / 59:1402 mobile). Black, white wordmark +
   supporting text, four link columns, address/email/phone, copyright + back-to-top.
   Mobile stacks the columns (Socials as a row); divider dimmed for the dark bg. */
.site-footer { background: #000000; color: #ffffff; }
.site-footer__inner { display: flex; flex-direction: column; gap: 48px; padding-top: 40px; padding-bottom: 40px; }
.site-footer__top { display: flex; flex-direction: column; gap: 40px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 24px; max-width: 339px; }
.site-footer__logo { width: 170px; height: 58px; object-fit: contain; object-position: left center; }
.site-footer__blurb { font-family: var(--blade-font); font-size: 14px; line-height: 22px; color: #ffffff; opacity: 0.5; margin: 0; }
.site-footer__cols { display: flex; flex-direction: column; gap: 32px; }
.site-footer__col-title { font-family: var(--blade-font); font-weight: 600; font-size: 18px; line-height: 32px; color: #ffffff; margin: 0 0 8px; }
.site-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { font-family: var(--blade-font); font-weight: 500; font-size: 16px; line-height: 26px; color: #ffffff; text-decoration: none; }
.site-footer__links a:hover { opacity: 0.7; }
.site-footer__col:last-child .site-footer__links { flex-direction: row; gap: 24px; flex-wrap: wrap; }
.site-footer .blade-divider--on-dark::before { background: rgba(255, 255, 255, 0.1); }
.site-footer .blade-divider--on-dark::after {
  background:
    linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) center / 8px 1px no-repeat,
    linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)) center / 1px 8px no-repeat;
}
.site-footer__contact { display: flex; flex-direction: column; gap: 32px; }
.site-footer__badge { height: 104px; width: auto; align-self: flex-start; margin-top: 8px; }
.site-footer__contact-item { display: flex; flex-direction: column; gap: 16px; }
.site-footer__contact-label { font-family: var(--blade-font); font-weight: 600; font-size: 12px; line-height: 12px; text-transform: uppercase; color: #ffffff; opacity: 0.5; }
.site-footer__contact-value { font-family: var(--blade-font); font-weight: 500; font-size: 18px; line-height: 26px; color: #ffffff; text-decoration: none; }
a.site-footer__contact-value:hover { opacity: 0.7; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.site-footer__copyright { font-family: var(--blade-font); font-weight: 400; font-size: 12px; line-height: 20px; color: #ffffff; opacity: 0.4; margin: 0; }
.site-footer__totop { flex: 0 0 40px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); color: #ffffff; }
.site-footer__totop:hover { background: rgba(255, 255, 255, 0.1); }
@media (min-width: 1024px) {
  .site-footer__inner { gap: 64px; padding-top: 80px; }
  .site-footer__top { flex-direction: row; justify-content: space-between; gap: 40px; }
  .site-footer__blurb { font-size: 16px; line-height: 24px; }
  .site-footer__cols { flex-direction: row; gap: 78px; }
  .site-footer__col:last-child .site-footer__links { flex-direction: column; gap: 10px; }
  .site-footer__contact { flex-direction: row; gap: 0; }
  .site-footer__contact-item:nth-child(1) { width: 46.84%; }   /* address 652/1392 */
  .site-footer__contact-item:nth-child(2) { width: 32.76%; }   /* email 456/1392 */
  .site-footer__contact-item:nth-child(3) { flex: 1; }         /* phone */
}

/* ============================================================
   SECTIONS
   Shared helpers + per-layout styles. Ported pixel-faithfully
   from the Next.js components in src/components/. Dark sections
   use --blade-section-dark; light sections use --blade-section-light.
   ============================================================ */

/* ----- Shared section header (light + dark variants) ----- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; }
}
.section-head__title {
  font-family: 'Saans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
  margin: 0;
  max-width: 680px;
}
@media (min-width: 1024px) {
  .section-head__title { font-size: 56px; line-height: 62px; }
}
.section-head__sub {
  font-size: 1.125rem;
  line-height: 26px;
  margin: 0;
}
@media (min-width: 1024px) { .section-head__sub { width: 448px; } }

/* Centered heading variant (Pricing) */
.section-head--center { text-align: center; align-items: center; flex-direction: column; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-head--center .section-head__title { margin-bottom: 0; }

/* Dark vs light section text colors */
.section--dark { background: var(--blade-section-dark); color: var(--blade-fg-on-dark); }
.section--dark .section-head__title { color: var(--blade-fg-on-dark); }
.section--dark .section-head__sub { color: rgba(250,250,249,0.7); }
.section--light { background: var(--blade-section-light); color: var(--blade-fg); }
.section--light .section-head__title { color: var(--blade-fg); }
.section--light .section-head__sub { color: rgba(10,10,10,0.7); }

/* ----- Hero (Blade — full-bleed turbine image, headline + quote button) -----
   Figma node 19:588: 1440×800 frame, full-bleed image + rgba(0,0,0,.2) overlay,
   title block bottom-left (x24 y409, 804px wide): h1 100/100/-4% white + blue
   uppercase "Get a quote" button. Mobile sizes are interim until the 360 frame
   (58:477) hero is extracted; tuned only to avoid horizontal overflow for now. */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #000 center bottom / cover no-repeat;
}
/* The Figma frame is 1440×800. Keep that fixed height on ALL desktop widths.
   The prior >1440 full-viewport (100vh) hero left too much empty image above the
   bottom-anchored headline on large monitors — marketing flagged it ("extra
   space"). A fixed 800px keeps the headline at its design y-proportion everywhere. */
@media (min-width: 1024px) { .hero { height: 800px; } }
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor the crop to the bottom of the photo — the truck + platform arm
     (the subject of the shot) sit on the ground line; a centered crop cuts them.
     Mobile horizontal 76% replicates the Figma mobile frame's own image placement
     (1173w at x-609 → visible window centered ~67% across the photo, on the
     turbine + truck). Desktop shows the full width, so centering is correct there. */
  object-position: 76% bottom;
}
@media (min-width: 1024px) { .hero__bg { object-position: center bottom; } }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero__content {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 392px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 1024px) {
  .hero__content {
    /* Align to the 1392 content box's left edge at ≥1440; below that, clamp to
       the gutter so the block never slides off-canvas (fluid 1024–1440 range). */
    left: max(var(--blade-container-pad-lg), calc(50% - 696px));
    right: auto;
    transform: none;
    bottom: auto;
    top: 409px;
    width: 804px;
  }
}
.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.hero__heading {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: -0.0455em;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 1024px) { .hero__heading { font-size: 100px; line-height: 100px; letter-spacing: -0.04em; } }
.hero__cta {
  align-self: flex-start;
  height: 48px;
  padding: 0 24px;
  font-family: var(--blade-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: normal;
  text-transform: uppercase;
  background: var(--blade-blue);
  color: #ffffff;
  border-radius: 4px;
}
.hero__cta:hover { background: #1850e0; }

/* ----- Blade divider (signature): hairline + 8×8 square ----- */
.blade-divider {
  position: relative;
  height: 8px;
}
.blade-divider::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 3.5px;
  height: 1px;
  background: var(--blade-gray-2);
}
.blade-divider::after {
  content: "";
  position: absolute;
  left: 7.5%;                         /* marker @ x24 of the 320 mobile ref */
  top: 0;
  width: 8px; height: 8px;
  /* Figma: a 1px "+" cross (not a solid square). */
  background:
    linear-gradient(#808080, #808080) center / 8px 1px no-repeat,
    linear-gradient(#808080, #808080) center / 1px 8px no-repeat;
}
@media (min-width: 1024px) {
  .blade-divider::after { left: 25.43%; }  /* @ x354 of the 1392 desktop ref */
}

/* ----- Intro (Figma 0:22 desktop / 58:568 mobile) ----- */
.intro { margin-top: 56px; }
@media (min-width: 1024px) { .intro { margin-top: 96px; } }
.intro__eyebrow { font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px; text-transform: uppercase; color: #000; opacity: 0.5; margin: 0; }
.intro__grid { display: flex; flex-direction: column; }
.intro__heading {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  color: #000000;
  margin: 48px 0 0;
}
.intro__aside {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.intro__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0.5;
}
.intro__p { font-size: 16px; line-height: 24px; color: #000000; }
.intro__features { display: flex; flex-direction: column; gap: 20px; }
.intro__feature {
  position: relative;
  padding-left: 16px;                 /* 12px icon box + 4px gap */
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.intro__feature::before {
  content: "";
  position: absolute;
  left: 4px; top: 10px;               /* 4×4 square centered in the 12px icon box */
  width: 4px; height: 4px;
  background: #000000;
}
@media (min-width: 1024px) {
  .intro__grid { flex-direction: row; justify-content: space-between; }
  .intro__heading {
    width: 49.569%;                   /* 690 of the 1392 ref — fluid below 1440 */
    margin-top: 48px;                /* h2 @ y108 (divider 8 + 100) */
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -0.0313em;        /* -3.13% */
  }
  .intro__aside { width: 32.7586%; margin-top: 52px; }   /* 456 of 1392, @ y114 */
  .intro__p, .intro__feature { font-size: 18px; line-height: 26px; }
  .intro__features { width: 74.3421%; }                   /* 339 of the 456 aside */
  .intro__feature::before { top: 11px; }
}

/* ----- Photo collage (Figma 0:177 desktop / 58:569+58:579+59:591 mobile) -----
   Designed collage: tile positions are fixed per breakpoint, photos are content.
   Mobile = three stacked blocks (pair / tall / pair) re-expressed as one canvas. */
.collage { margin-top: 48px; }
@media (min-width: 1024px) { .collage { margin-top: 80px; } }
/* FLUID collage: the canvas keeps the artboard's aspect ratio and every tile is
   positioned/sized as a % of it — pixel-exact at the gated reference widths
   (320 / 1392 content) and proportional at every width in between, so nothing
   leaves dead space at e.g. 860px viewports. */
.collage__canvas { position: relative; aspect-ratio: 320 / 1309; }
.collage__tile {
  position: absolute;
  object-fit: cover;
  border-radius: 4px;
}
/* Mobile canvas (ref 320×1309): the Figma had one 43px gap outlier above the tall
   tile vs the 8px rhythm everywhere else — normalized to 8px per Vitaliy's review
   (2026-06-12), since proportional scaling ballooned it at mid widths. */
.collage__tile--1 { left: 0;        top: 15.89%;   width: 100%;     height: 15.2788%; object-position: 40% 42%; }
.collage__tile--2 { left: 0;        top: 68.8312%; width: 100%;     height: 15.2788%; object-position: 46% 92%; }
.collage__tile--3 { left: 0;        top: 31.78%;   width: 100%;     height: 36.4546%; object-position: 21% 44%; }
.collage__tile--4 { left: 0;        top: 84.7211%; width: 74.375%;  height: 15.2788%; object-position: 39% 10%; }
.collage__tile--5 { left: 25.625%;  top: 0;        width: 74.375%;  height: 15.2788%; object-position: 52% 23%; }
@media (min-width: 1024px) {
  /* Desktop canvas (ref 1392×760) */
  .collage__canvas { aspect-ratio: 1392 / 760; }
  .collage__tile--1 { left: 0;        top: 41.0526%; width: 32.7586%; height: 39.4737%; object-position: 33% 42%; }
  .collage__tile--2 { left: 67.2414%; top: 19.4737%; width: 32.7586%; height: 39.4737%; object-position: 50% 91%; }
  .collage__tile--3 { left: 33.6207%; top: 5.2632%;  width: 32.7586%; height: 89.4737%; object-position: 46% 50%; }
  .collage__tile--4 { left: 67.2414%; top: 60.5263%; width: 24.3534%; height: 39.4737%; object-position: 47% 50%; }
  .collage__tile--5 { left: 8.4052%;  top: 0;        width: 24.3534%; height: 39.4737%; object-position: 70% 50%; }
}

/* ----- Trucks carousel (Figma 0:51 desktop / 59:722 mobile) -----
   Fluid per the FIGMA.md rule: % of the content box, exact at 320/1392 refs. */
.trucks {
  margin-top: 48px;
  background: var(--blade-gray-1);
  padding: 24px 0 80px;
}
@media (min-width: 1024px) { .trucks { margin-top: 96px; padding: 24px 0 64px; } }
.trucks__eyebrow {
  font-family: var(--blade-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.5;
}
.trucks .blade-divider { margin-top: 0; }     /* divider @ y100 (24 + 12 + 64) */
.trucks__headrow { display: flex; justify-content: space-between; align-items: flex-end; }
.trucks__heading {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  color: #000000;
  margin: 44px 0 0;                              /* h5 @ y152 (100 + 8 + 44) */
}
.trucks__cta { display: none; }
.trucks__viewport { margin-top: 41px; }          /* cards @ y397 */
.trucks__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* bleed to the right viewport edge so the next card peeks (Figma 1416 strip) */
  margin-right: calc(-1 * var(--blade-container-pad));
  padding-right: var(--blade-container-pad);
}
.trucks__track::-webkit-scrollbar { display: none; }
.trucks__card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  background: #ffffff;
  border-radius: 4px;
  color: #000000;
}
.trucks__card-text { display: flex; flex-direction: column; gap: 16px; }
.trucks__card-title {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  margin: 0;
}
.trucks__card-sub { font-size: 16px; line-height: 24px; opacity: 0.5; }
/* Equal image boxes regardless of photo orientation: the box owns the ratio,
   the img is absolutely fitted inside (content can't inflate the box). cover —
   the design slices portrait photos to the landscape window (e.g. the 210). */
.trucks__card-img { position: relative; aspect-ratio: 139 / 100; }
.trucks__card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trucks__card-footer { border-top: 1px solid var(--blade-gray-2); padding-top: 32px; }
.trucks__card-specs { display: flex; flex-direction: column; gap: 12px; opacity: 0.5; }
.trucks__card-spec {
  position: relative;
  padding-left: 16px;
  font-family: var(--blade-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
}
.trucks__card-spec::before {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 4px; height: 4px;
  background: #000000;
}
.trucks__pager {
  margin-top: 32px;                              /* pager @ y849 (817 + 32) */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trucks__arrows { display: flex; gap: 8px; }
.trucks__arrow { padding: 0; border: 0; background: none; line-height: 0; }
.trucks__arrow img { width: 40px; height: 40px; }
.trucks__dots { display: flex; align-items: center; gap: 12px; }
.trucks__dot {
  width: 8px; height: 8px;
  padding: 0;
  border: 2px solid #000000;
  border-radius: 4px;
  background: none;
}
.trucks__dot:not(.is-active) { border-width: 4px; opacity: 0.1; }
@media (min-width: 1024px) {
  .trucks__eyebrow { font-size: 14px; line-height: 20px; }
  .trucks .blade-divider { margin-top: 0; }  /* divider at section top (eyebrow removed) */
  .trucks__heading {
    width: 83.1897%;                             /* 1158 of 1392 */
    margin-top: 48px;                           /* h2 @ y308 */
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -0.0313em;
  }
  .trucks__cta {
    display: inline-flex;
    width: 160px;
    height: 48px;
    margin-bottom: 12px;                         /* button bottom @ group end -12 */
    font-family: var(--blade-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    background: var(--blade-blue);
    color: #ffffff;
    border-radius: 4px;
  }
  .trucks__cta:hover { background: #1850e0; }
  .trucks__viewport { margin-top: 64px; }        /* cards @ y564 (500 + 64) */
  .trucks__track {
    gap: 0.862%;                                 /* 12 of 1392 */
    margin-right: calc(-1 * var(--blade-container-pad-lg));
    padding-right: var(--blade-container-pad-lg);
  }
  .trucks__card { flex: 0 0 32.7586%; gap: 40px; padding: 34px 32px 32px; }
  .trucks__card-title { font-size: 30px; line-height: 34px; }
  .trucks__card-sub { font-size: 18px; line-height: 26px; }
  .trucks__card-spec { font-size: 14px; line-height: 20px; }
  .trucks__card-spec::before { top: 8px; }
  .trucks__pager { margin-top: 40px; }           /* pager @ y1151 (1111 + 40) */
}

/* Trucks GRID variant (the /truck-mounts/ landing, Figma 96:5807): a static
   3-col card grid instead of the carousel — sits directly under the full-bleed
   hero (gap 0), no pager, no bleed. Cards + specs unchanged. */
.trucks--grid { margin-top: 0; }
.trucks--grid .trucks__viewport { overflow: visible; }
.trucks--grid .trucks__track {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  overflow: visible; margin-right: 0; padding-right: 0;
}
.trucks--grid .trucks__card { flex: initial; width: auto; }
@media (min-width: 1024px) {
  .trucks--grid { margin-top: 0; }
  .trucks--grid .trucks__track { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ----- Industries (Figma 0:194 desktop / 59:898 mobile) -----
   Overflow carousel of full-bleed photo cards (image + 30% dark overlay,
   auto-numbered [01] index, title, frosted "+" chip) + gray arrows/dots pager.
   Same vertical rhythm as trucks; card layout FLIPS by breakpoint. Fluid per the
   FIGMA.md rule — % of the content box, exact at the 320/1392 references. */
.industries { margin-top: 64px; }
@media (min-width: 1024px) { .industries { margin-top: 24px; } }  /* Figma: services(full-bleed)→industries = 24 */
.industries__eyebrow {
  font-family: var(--blade-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.5;
}
.industries .blade-divider { margin-top: 0; }     /* divider @ y76 */
.industries__headrow { display: flex; justify-content: space-between; align-items: flex-end; }
.industries__heading {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  color: #000000;
  margin: 44px 0 0;                                  /* h5 @ y128 (76 + 8 + 44) */
}
.industries__cta { display: none; }
.industries__viewport { margin-top: 41px; }          /* cards @ y407 */
.industries__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* bleed to the right viewport edge so the next card peeks (Figma 1416 strip) */
  margin-right: calc(-1 * var(--blade-container-pad));
  padding-right: var(--blade-container-pad);
}
.industries__track::-webkit-scrollbar { display: none; }
.industries__card {
  position: relative;
  flex: 0 0 74.375%;                                 /* 238 of the 320 mobile ref */
  aspect-ratio: 238 / 380;
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  color: #ffffff;
  background: var(--blade-gray-4);
}
.industries__card-img { position: absolute; inset: 0; }
.industries__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industries__card::after {                           /* 30% dark overlay */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.industries__card-index,
.industries__card-title,
.industries__card-arrow { position: absolute; z-index: 2; }
.industries__card-index {
  left: 16px; top: 16px;
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
}
.industries__card-title {                            /* mobile: TOP-left, below index */
  left: 16px; right: 16px; top: 41px;
  margin: 0;
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}
.industries__card-arrow {                            /* mobile: bottom-LEFT */
  left: 16px; bottom: 16px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  line-height: 0;
}
.industries__pager {
  margin-top: 32px;                                  /* pager @ y819 */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.industries__arrows { display: flex; gap: 8px; }
.industries__arrow { padding: 0; border: 0; background: none; line-height: 0; }
.industries__arrow img { width: 40px; height: 40px; }
.industries__dots { display: flex; align-items: center; gap: 12px; }
.industries__dot {
  width: 8px; height: 8px;
  padding: 0;
  border: 2px solid #000000;
  border-radius: 4px;
  background: none;
}
.industries__dot:not(.is-active) { border-width: 4px; opacity: 0.1; }
@media (min-width: 1024px) {
  .industries__eyebrow { font-size: 14px; line-height: 20px; }
  .industries .blade-divider { margin-top: 0; }  /* divider at section top (eyebrow removed) */
  .industries__heading {
    width: 83.1897%;                                 /* 1158 of 1392 */
    margin-top: 48px;                               /* h2 @ y284 */
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -0.0313em;                       /* -3.13% */
  }
  .industries__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 48px;
    margin-bottom: 12px;                             /* button @ y416 (bottom -12) */
    font-family: var(--blade-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    background: var(--blade-blue);
    color: #ffffff;
    border-radius: 4px;
  }
  .industries__cta:hover { background: #1850e0; }
  .industries__viewport { margin-top: 64px; }        /* cards @ y540 */
  .industries__track {
    gap: 0.862%;                                     /* 12 of 1392 */
    margin-right: calc(-1 * var(--blade-container-pad-lg));
    padding-right: var(--blade-container-pad-lg);
  }
  .industries__card { flex: 0 0 41.1638%; aspect-ratio: 573 / 360; }  /* 573 of 1392 */
  .industries__card-index { left: 24px; top: 24px; font-size: 14px; line-height: 24px; }
  .industries__card-title {                          /* desktop: BOTTOM-left */
    left: 24px; right: 24px; top: auto; bottom: 24px;
    font-size: 30px;
    line-height: 28px;
  }
  .industries__card-arrow { left: auto; right: 24px; bottom: 24px; }  /* desktop: bottom-RIGHT */
  .industries__pager { margin-top: 40px; }
}

/* Product-page variant ("Industries that use the <product>", Figma 124:8616) —
   identical cards/pager; differs only in gaps: no eyebrow (divider at the top),
   reach→benefits section gap, and a tighter heading→cards gap. Placed after the
   base block so equal-specificity selectors win by source order. */
.industries--product { margin-top: 40px; }
.industries--product .blade-divider { margin-top: 0; }
.industries--product .industries__viewport { margin-top: 41px; }
@media (min-width: 1024px) {
  .industries--product { margin-top: 96px; }            /* Figma: reach → benefits = 200 */
  .industries--product .blade-divider { margin-top: 0; }  /* no eyebrow → divider sits at section top */
  .industries--product .industries__viewport { margin-top: 48px; }  /* Figma: heading → cards = 48 (vs 64 on home) */
}

/* ----- Clients (Figma 126:9326 desktop / 59:988 mobile) -----
   Centered divider (square marker centered, not at 25%) + centered heading, then
   an infinite logo marquee of corner-marked cells. Heading is ALL BLACK per the
   Figma node (the live site's blue accent word was dropped in the redesign). */
.clients { margin-top: 64px; text-align: center; }
@media (min-width: 1024px) { .clients { margin-top: 96px; } }  /* Figma: industries→clients = 200 */
.clients .blade-divider::after { left: calc(50% - 4px); }   /* square centered @ x156/x692 */
@media (min-width: 1024px) { .clients .blade-divider::after { left: calc(50% - 4px); } }
.clients__heading {
  max-width: 320px;
  margin: 44px auto 0;                                /* h5 @ y52 (divider 8 + 44) */
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  color: #000000;
}
.clients__viewport {
  margin-top: 41px;                                   /* logos @ y161 */
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.clients__track {
  display: flex;
  align-items: center;
  gap: 40px;                                          /* mobile cell gap */
  width: max-content;
  animation: blade-marquee 40s linear infinite;
}
.clients__cell {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 105px; height: 45px;                         /* mobile cell */
  background: url("../images/clients/clients-corners.svg") center / 104px 43px no-repeat;
}
.clients__logo {
  max-width: 64px;
  max-height: 23px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .clients__heading {
    max-width: 690px;
    margin-top: 48px;                                /* h2 @ y108 */
    font-size: 64px;
    line-height: 64px;
    letter-spacing: -0.0313em;
  }
  .clients__viewport { margin-top: 80px; }            /* logos @ y316 */
  .clients__track { gap: 48px; }
  .clients__cell { width: 222px; height: 79px; background-size: 220px 77px; }
  .clients__logo { max-width: 130px; max-height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ----- Statement (Figma 39:38 desktop; mobile derived from home system) -----
   Full-bleed dark photo (40% overlay) + centered column: frosted Blade-mark icon,
   white heading, 80% body, blue CTA. Nested gaps: icon→heading 16, head→body 32,
   text→button 40. */
.statement {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  margin-top: 64px;                                   /* white breath before the dark band (Figma gap) */
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 1024px) { .statement { margin-top: 96px; } }  /* Figma: clients→statement = 200 */
.statement__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.statement::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); z-index: 1; }
.statement__container { position: relative; z-index: 2; }
.statement__inner {
  max-width: 690px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;                                          /* text → button */
}
.statement__text { display: flex; flex-direction: column; align-items: center; gap: 32px; }  /* head → body */
.statement__head { display: flex; flex-direction: column; align-items: center; gap: 16px; }   /* icon → heading */
.statement__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(38.4px);
  backdrop-filter: blur(38.4px);
}
.statement__heading {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  margin: 0;
}
.statement__body {
  font-family: var(--blade-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  margin: 0;
}
.statement__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  font-family: var(--blade-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  background: var(--blade-blue);
  color: #ffffff;
  border-radius: 4px;
}
.statement__cta:hover { background: #1850e0; }
@media (min-width: 1024px) {
  .statement { min-height: 800px; padding: 0; }
  .statement__heading { font-size: 64px; line-height: 64px; letter-spacing: -0.0313em; }
  .statement__body { font-size: 18px; line-height: 26px; }
}

/* ----- Quotes (Figma 0:293 desktop / 59:1033 mobile) -----
   Testimonial carousel. Mobile = single column (eyebrow/divider/quote/footer);
   desktop = 2-col grid (counter rail @354 + main). Quotes + attributions stacked
   (grid 1/1), JS toggles the active one. */
.quotes { margin-top: 64px; }
@media (min-width: 1024px) { .quotes { margin-top: 24px; } }  /* Figma: statement(full-bleed)→quotes = 24 */
.quotes__eyebrow {
  font-family: var(--blade-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.5;
}
.quotes .blade-divider { margin-top: 34px; }         /* divider @ y110 mobile */
.quotes__stage { display: grid; margin-top: 48px; }  /* quote @ y166 */
.quotes__quote {
  grid-area: 1 / 1;
  margin: 0;
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  color: #000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.quotes__quote.is-active { opacity: 1; visibility: visible; }
.quotes__footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.quotes__counter { display: none; }
.quotes__arrows { display: flex; gap: 8px; }
.quotes__arrow { padding: 0; border: 0; background: none; line-height: 0; cursor: pointer; }
.quotes__arrow img { width: 40px; height: 40px; }
.quotes__arrow--prev img { transform: scaleX(-1); }  /* flip the right-arrow → full-opacity left */
.quotes__attrib { display: grid; text-align: right; }
.quotes__attrib-item {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
}
.quotes__attrib-item.is-active { opacity: 1; visibility: visible; }
.quotes__author, .quotes__company {
  font-family: var(--blade-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
}
.quotes__company { opacity: 0.5; }
@media (min-width: 1024px) {
  .quotes .blade-divider { margin-top: 80px; }       /* divider @ y176 */
  .quotes .blade-divider::after { left: 37.715%; }    /* square @ x525 of 1392 */
  .quotes__body { display: grid; grid-template-columns: 354px 1fr; min-height: 468px; }
  .quotes__counter {
    display: block;
    grid-column: 1;
    align-self: end;
    font-family: var(--blade-font);
    font-weight: 500;
    font-size: 40px;
    line-height: 54px;
    letter-spacing: -0.05em;
    color: #000000;
  }
  .quotes__main { grid-column: 2; display: flex; flex-direction: column; justify-content: space-between; }
  .quotes__stage { margin-top: 48px; }               /* quote @ y284 */
  .quotes__quote { font-size: 48px; line-height: 54px; letter-spacing: -0.0417em; }
  .quotes__footer { margin-top: 0; }
  .quotes__author, .quotes__company { font-size: 18px; line-height: 26px; }
}

/* ----- Locations (Figma 70:4965 desktop; mobile derived) -----
   #F5F5F5 band, 2-col: left text (eyebrow/divider/heading/lead/office list) +
   right coverage map (690×752, radius 4). Mobile stacks text over map. */
.locations { background: var(--blade-gray-1); margin-top: 64px; }
@media (min-width: 1024px) { .locations { margin-top: 96px; } }  /* Figma: quotes→locations = 200 */
/* padding-block only — keep the .container's horizontal gutters (don't clobber them). */
.locations__inner { display: flex; flex-direction: column; padding-block: 48px; gap: 40px; }
.locations__eyebrow {
  font-family: var(--blade-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.5;
}
.locations .blade-divider { margin-top: 10px; }
.locations .blade-divider::after { left: 71.9%; }    /* square @ x488 of the 678 divider */
.locations__body { margin-top: 40px; }
.locations__heading {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -0.037em;
  color: #000000;
  margin: 0;
}
.locations__lead {
  margin: 16px 0 0;
  max-width: 456px;
  font-family: var(--blade-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  opacity: 0.5;
}
.locations__offices { margin-top: 32px; display: flex; flex-direction: column; list-style: none; padding: 0; }
.locations__office {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.locations__office + .locations__office { padding-top: 20px; }
.locations__office-dot { position: relative; flex: 0 0 12px; height: 12px; }
.locations__office-dot::before {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 4px; height: 4px;
  background: #000000;
}
.locations__office-city {
  flex: 1;
  font-family: var(--blade-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
}
.locations__office-region {
  font-family: var(--blade-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  opacity: 0.5;
  text-align: right;
}
.locations__map { border-radius: 4px; overflow: hidden; aspect-ratio: 690 / 752; }
.locations__map img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 1024px) {
  .locations__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; padding-block: 24px; min-height: 800px; gap: 0; }
  .locations__text { width: 41.164%; }                /* 573 of 1392 */
  .locations .blade-divider { margin-top: 10px; }
  .locations__body { margin-top: 90px; }              /* heading @ y156 */
  .locations__heading { font-size: 54px; line-height: 58px; }
  .locations__lead { font-size: 18px; line-height: 26px; }
  .locations__offices { margin-top: 48px; }
  .locations__map { width: 49.569%; }                 /* 690 of 1392 */
}

/* ----- Latest News (Figma 126:9049 desktop / 59:1195 mobile) -----
   Centered heading under a centered-square divider, then an overflow carousel of
   post cards (img + title + date) + gray arrows/dots pager. Same carousel mechanic
   as trucks; cards 456 (32.76%) desktop / 100% mobile. */
.news { margin-top: 64px; }
@media (min-width: 1024px) { .news { margin-top: 96px; } }  /* Figma: locations→news = 200 */
.news .blade-divider::after { left: calc(50% - 4px); }   /* square centered (x156/x692) */
.news__heading {
  margin: 44px 0 0;                                   /* heading @ y52 mobile */
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  color: #000000;
  text-align: center;
}
.news__viewport { margin-top: 41px; }                 /* cards @ y127 mobile */
.news__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-right: calc(-1 * var(--blade-container-pad));
  padding-right: var(--blade-container-pad);
}
.news__track::-webkit-scrollbar { display: none; }
.news__card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #000000;
}
.news__card-img { position: relative; aspect-ratio: 320 / 220; border-radius: 4px; overflow: hidden; }
.news__card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news__card-text { display: flex; flex-direction: column; gap: 16px; }
.news__card-title {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}
.news__card-date {
  font-family: var(--blade-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  opacity: 0.5;
  margin: 0;
}
.news__pager {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__arrows { display: flex; gap: 8px; }
.news__arrow { padding: 0; border: 0; background: none; line-height: 0; cursor: pointer; }
.news__arrow img { width: 40px; height: 40px; }
.news__dots { display: flex; align-items: center; gap: 12px; }
.news__dot { width: 8px; height: 8px; padding: 0; border: 2px solid #000000; border-radius: 4px; background: none; }
.news__dot:not(.is-active) { border-width: 4px; opacity: 0.1; }
@media (min-width: 1024px) {
  .news .blade-divider { margin-top: 0; }
  .news__heading { margin-top: 48px; font-size: 64px; line-height: 64px; letter-spacing: -0.0313em; }
  .news__viewport { margin-top: 48px; }              /* cards @ y272 */
  .news__track {
    gap: 0.862%;                                      /* 12 of 1392 */
    margin-right: calc(-1 * var(--blade-container-pad-lg));
    padding-right: var(--blade-container-pad-lg);
  }
  .news__card { flex: 0 0 32.7586%; gap: 25px; }      /* 456 of 1392 */
  .news__card-img { aspect-ratio: 456 / 280; }
  .news__card-title { font-size: 24px; line-height: 28px; }
  .news__card-date { font-size: 16px; line-height: 24px; }
  .news__pager { margin-top: 40px; }
}

/* ----- CTA Panel (Figma 0:154 desktop / 59:1242 mobile) -----
   #F5F5F5 rounded card: faint logo watermark + 4 corner marks, left text block
   (heading + body + "Get a quote" + phone), right trucks photo. Mobile stacks
   text over photo; phone = outline button (desktop) / underlined link (mobile). */
.cta-panel { margin-top: 64px; margin-bottom: 64px; }   /* margin-bottom = breath before the dark footer */
@media (min-width: 1024px) { .cta-panel { margin-top: 80px; margin-bottom: 80px; } }
.cta-panel__card {
  position: relative;
  overflow: hidden;
  background: var(--blade-gray-1);
  border-radius: 4px;
  padding: 100px 20px 20px;                           /* text starts ~y100 (mobile) */
}
.cta-panel__watermark { position: absolute; z-index: 0; top: -90px; left: -150px; width: 560px; height: auto; pointer-events: none; }
.cta-panel__mark {
  position: absolute; z-index: 1; width: 12px; height: 12px; pointer-events: none;
  /* Figma: 1px "+" strokes, not a solid square. */
  background:
    linear-gradient(#808080, #808080) center / 12px 1px no-repeat,
    linear-gradient(#808080, #808080) center / 1px 12px no-repeat;
}
.cta-panel__mark--tl { top: 20px; left: 20px; }
.cta-panel__mark--tr { top: 20px; right: 20px; }
.cta-panel__mark--bl { bottom: 20px; left: 20px; }
.cta-panel__mark--br { bottom: 20px; right: 20px; }
.cta-panel__text { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 32px; }
.cta-panel__head { display: flex; flex-direction: column; gap: 24px; }
.cta-panel__heading {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  letter-spacing: -0.037em;
  color: #000000;
  margin: 0;
}
.cta-panel__body {
  max-width: 456px;
  font-family: var(--blade-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  opacity: 0.5;
  margin: 0;
}
.cta-panel__actions { display: flex; align-items: center; gap: 24px; }
.cta-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  font-family: var(--blade-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  background: var(--blade-blue);
  color: #ffffff;
  border-radius: 4px;
  flex: 0 0 auto;
}
.cta-panel__cta:hover { background: #1850e0; }
.cta-panel__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--blade-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  color: #000000;
}
.cta-panel__phone-icon { display: none; }
.cta-panel__phone span { text-decoration: underline; }    /* mobile: underlined text link */
.cta-panel__img { position: relative; z-index: 2; margin-top: 32px; aspect-ratio: 320 / 220; border-radius: 4px; overflow: hidden; }
.cta-panel__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 1024px) {
  .cta-panel__card { min-height: 600px; padding: 0; display: flex; align-items: center; }
  .cta-panel__watermark { top: -773px; left: -569px; width: 1236px; }
  .cta-panel__mark--tl { top: 24px; left: 24px; }
  .cta-panel__mark--tr { top: 24px; left: 56.54%; right: auto; }    /* x787 of 1392 */
  .cta-panel__mark--bl { bottom: 24px; left: 24px; }
  .cta-panel__mark--br { bottom: 24px; left: 56.54%; right: auto; }
  .cta-panel__text { margin-left: 8.405%; width: 32.759%; gap: 40px; }  /* x117, width 456 */
  .cta-panel__heading { font-size: 54px; line-height: 58px; }
  .cta-panel__body { font-size: 18px; line-height: 26px; }
  .cta-panel__actions { gap: 8px; }
  .cta-panel__phone {
    width: 160px; height: 48px;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    flex: 0 0 auto;
  }
  .cta-panel__phone-icon { display: block; }
  .cta-panel__phone span { text-decoration: none; }
  .cta-panel__img {
    position: absolute;
    z-index: 2;
    top: 24px; bottom: 24px; right: 20px;
    width: 39.727%;                                   /* 553 of 1392 */
    margin-top: 0;
    aspect-ratio: auto;
  }
}

/* ----- Sector Hero (Figma 79:941, Industry detail; mobile derived) -----
   Full-bleed sector photo + dark overlay + bottom-to-black gradient; big H1
   (sector name) bottom-left, supporting tagline bottom-right. Renders the page H1. */
.sector-hero { position: relative; overflow: hidden; min-height: 480px; color: #ffffff; }
.sector-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.sector-hero__overlay {
  /* Figma 96:6210/79:941: flat rgba(0,0,0,.2) wash + a top→bottom black gradient
     applied at .4 opacity → ~.5 darkness at the very bottom (not near-black). */
  position: absolute; inset: 0; z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 55%, rgba(0, 0, 0, 0.4) 100%);
}
.sector-hero__inner {
  position: relative; z-index: 2;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding-bottom: 32px;
}
.sector-hero__lead { display: flex; flex-direction: column; gap: 16px; }
.sector-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.sector-hero__chip { display: inline-flex; align-items: center; padding: 8px 12px; border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 4px; font-family: var(--blade-font); font-size: 14px; line-height: 20px; font-weight: 600; text-transform: uppercase; }
.sector-hero__heading { font-family: var(--blade-font); font-weight: 600; font-size: 48px; line-height: 1; letter-spacing: -0.04em; margin: 0; }
.sector-hero__body { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; margin: 0; max-width: 456px; }
@media (min-width: 1024px) {
  .sector-hero, .sector-hero__inner { min-height: 680px; }
  .sector-hero__inner { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; }
  .sector-hero__lead { max-width: 804px; }
  .sector-hero__heading { max-width: 804px; font-size: 100px; }
  .sector-hero__body { font-size: 18px; line-height: 26px; flex: 0 0 456px; padding-bottom: 8px; }
}

/* ----- Sector Intro (Figma 79:3373, Industry detail; mobile derived) -----
   Eyebrow + signature divider + 64px heading + a row of three stat cards
   (icon top, big value + caps label bottom). hero→intro gap = 24 (Figma). */
.sector-intro { margin-top: 24px; }
.sector-intro__eyebrow { font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 24px; text-transform: uppercase; color: #000; opacity: 0.5; margin: 0; }
.sector-intro .blade-divider { margin-top: 0; }
.sector-intro__heading { margin: 44px 0 0; font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; letter-spacing: -0.0313em; color: #000; }
.sector-intro__stats { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.sector-intro__stat { background: var(--blade-gray-1); border-radius: 4px; padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.sector-intro__stat-icon { width: 80px; height: 80px; flex-shrink: 0; }
.sector-intro__stat-text { display: flex; flex-direction: column; gap: 8px; }
.sector-intro__stat-value { font-family: var(--blade-font); font-weight: 600; font-size: 40px; line-height: 1; letter-spacing: -0.037em; color: #000; }
.sector-intro__stat-label { font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px; text-transform: uppercase; color: #000; opacity: 0.5; }
@media (min-width: 1024px) {
  .sector-intro .blade-divider { margin-top: 0; }    /* divider at section top (eyebrow removed) */
  .sector-intro__heading { margin-top: 48px; font-size: 64px; line-height: 64px; max-width: 1041px; }   /* heading @ y284 */
  .sector-intro__stats { grid-template-columns: repeat(3, 1fr); margin-top: 80px; }   /* cards @ y556 */
  .sector-intro__stat { min-height: 315px; justify-content: space-between; gap: 0; }
  .sector-intro__stat-value { font-size: 54px; line-height: 58px; }
}

/* ----- Media + Text (Figma 79:3946 / 79:4029; mobile derived) -----
   2-col: image (690×800, r4) + text (eyebrow + heading + body + bullets + buttons).
   .media-text--reverse flips the image to the right. Mobile stacks (image on top). */
.media-text { margin-top: 64px; }
@media (min-width: 1024px) { .media-text { margin-top: 96px; } }
.media-text__inner { display: flex; flex-direction: column; gap: 40px; }
.media-text__media { border-radius: 4px; overflow: hidden; aspect-ratio: 690 / 800; }
.media-text__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-text__text { display: flex; flex-direction: column; gap: 40px; }
.media-text__eyebrow { font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px; text-transform: uppercase; color: #000; opacity: 0.5; margin: 0; }
.media-text__heading { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; letter-spacing: -0.0313em; color: #000; margin: 0; }
.media-text__body { display: flex; flex-direction: column; gap: 24px; margin: 0; }
.media-text__p { font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: rgba(0,0,0,0.5); margin: 0; }
/* Optional eyebrow + "+" divider header above the 2-col (About who-we-are). */
.media-text__eyebrow--top { margin: 0; }
.media-text--header .blade-divider { margin-top: 0; }
.media-text--header .media-text__inner { margin-top: 44px; }
.media-text__bullets { display: flex; flex-direction: column; gap: 20px; margin: 0; padding: 0; list-style: none; }
.media-text__bullet { position: relative; padding-left: 28px; font-family: var(--blade-font); font-size: 18px; line-height: 26px; color: #000; }
.media-text__bullet::before { content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--blade-blue); }
.media-text__buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.media-text__btn { display: inline-flex; align-items: center; height: 48px; padding: 0 24px; border-radius: 4px; font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px; text-transform: uppercase; text-decoration: none; }
.media-text__btn--primary { background: var(--blade-blue); color: #fff; }
.media-text__btn--alt { border: 1px solid rgba(0,0,0,0.2); color: #000; }
@media (min-width: 1024px) {
  .media-text__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 0; }
  .media-text--reverse .media-text__inner { flex-direction: row-reverse; }
  .media-text__media { width: 49.569%; }   /* 690 of 1392 */
  .media-text__text { width: 41.092%; }     /* 572 of 1392 */
  .media-text__heading { font-size: 64px; line-height: 64px; }
  .media-text--header .blade-divider { margin-top: 0; }   /* divider at section top (eyebrow removed) */
  .media-text--header .media-text__inner { margin-top: 48px; }   /* 2-col @ y284 */
}
/* Optional gallery in the media slot (main image + arrows + thumb strip) — shared
   [data-gallery] JS. Used by the About who-we-are block. */
.media-text__media--gallery { display: flex; flex-direction: column; gap: 16px; aspect-ratio: auto; overflow: visible; border-radius: 0; }
.media-text__gallery-main { position: relative; aspect-ratio: 690 / 800; border-radius: 4px; overflow: hidden; }
.media-text__gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 4px; }
.media-text__gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 0; padding: 0; background: none; cursor: pointer; }
.media-text__gallery-arrow img { width: 40px; height: 40px; display: block; }
.media-text__gallery-arrow--prev { left: 12px; }
.media-text__gallery-arrow--next { right: 12px; }
.media-text__thumbs { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; overflow-x: auto; scrollbar-width: none; }
.media-text__thumbs::-webkit-scrollbar { display: none; }
.media-text__thumb { flex: 0 0 96px; aspect-ratio: 136 / 91; border-radius: 4px; overflow: hidden; opacity: 0.6; transition: opacity 150ms; }
.media-text__thumb.is-active { opacity: 1; outline: 2px solid var(--blade-blue); outline-offset: -2px; }
.media-text__thumb button { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.media-text__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ----- Benefits (Figma 79:2287 → content 79:3375; mobile derived) -----
   Eyebrow + "+" divider, then 2-col: LEFT heading (h3) + CTA button | RIGHT a
   stack of photo+text card rows (image 309×240 r4 | title h6 + body). Section
   header rhythm = eyebrow y0 → divider y176 → content y284 (Blade standard). */
.benefits { margin-top: 64px; }
@media (min-width: 1024px) { .benefits { margin-top: 24px; } }   /* follows the full-bleed carousel */
.benefits__eyebrow { font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px; text-transform: uppercase; color: #000; opacity: 0.5; margin: 0; }
.benefits .blade-divider { margin-top: 0; }
.benefits__cols { display: flex; flex-direction: column; gap: 40px; margin-top: 44px; }
.benefits__lead { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.benefits__heading { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; letter-spacing: -0.037em; color: #000; margin: 0; }
.benefits__btn { display: inline-flex; align-items: center; justify-content: center; min-width: 160px; height: 48px; padding: 0 24px; border-radius: 4px; background: var(--blade-blue); color: #fff; font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px; text-transform: uppercase; text-decoration: none; }
.benefits__btn:hover { background: #1850e0; }
.benefits__cards { display: flex; flex-direction: column; gap: 32px; }
.benefits__card { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.benefits__media { border-radius: 4px; overflow: hidden; aspect-ratio: 309 / 240; flex-shrink: 0; }
.benefits__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.benefits__card-text { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.benefits__card-title { font-family: var(--blade-font); font-weight: 600; font-size: 24px; line-height: 28px; color: #000; margin: 0; }
.benefits__card-body { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: rgba(0,0,0,0.5); margin: 0; }
@media (min-width: 1024px) {
  .benefits .blade-divider { margin-top: 0; }   /* divider at section top (eyebrow removed) */
  .benefits__cols { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 0; margin-top: 48px; }   /* content @ y284 */
  .benefits__lead { width: 41.16%; gap: 27px; }     /* 573 of 1392 */
  .benefits__heading { font-size: 54px; line-height: 58px; }
  .benefits__cards { width: 49.43%; }               /* 688 of 1392 */
  .benefits__card { flex-direction: row; align-items: center; gap: 24px; }
  .benefits__media { width: 44.91%; }               /* 309 of 688 */
  .benefits__card-text { flex: 1; gap: 24px; }      /* title → body 24 (Figma) */
}

/* Page-scoped section-gap overrides — these reused sections carry Home's
   full-bleed (24px) top gap; on rent-a-boom-lift they follow contained sections. */
.page-rent-a-boom-lift .quotes { margin-top: 64px; }
.page-rent-a-boom-lift .industries { margin-top: 64px; }
/* The intro reuses the Home `intro` section but here it hugs the full-bleed hero
   (24px) and carries an eyebrow → divider pushed to y176 (Figma 79:3237). */
.page-rent-a-boom-lift .intro { margin-top: 24px; }
.page-rent-a-boom-lift .intro .blade-divider { margin-top: 44px; }   /* eyebrow 20 + 44 = divider @ y64 (mobile) */
@media (min-width: 1024px) {
  .page-rent-a-boom-lift .quotes { margin-top: 96px; }
  .page-rent-a-boom-lift .industries { margin-top: 96px; }
  .page-rent-a-boom-lift .intro { margin-top: 24px; }
  .page-rent-a-boom-lift .intro .blade-divider { margin-top: 0; }   /* eyebrow 20 + 156 = divider @ y176 */
}

/* About page gaps: who-we-are media_text hugs the full-bleed hero (24); the
   sectors/industries carousel follows a contained section (200). */
.page-about .media-text { margin-top: 64px; }
.page-about .industries { margin-top: 64px; }
@media (min-width: 1024px) {
  .page-about .media-text { margin-top: 24px; }
  .page-about .industries { margin-top: 96px; }
}

/* Featured Clients — the intro is heading-left + body-right, no divider (Figma 141:2360).
   The Client Spotlights (benefits) is a #F5F5F5 full-bleed band (Figma 142:3161). */
.page-featured-clients .intro .blade-divider { display: none; }
.page-featured-clients .benefits { margin-top: 64px; background: var(--blade-gray-1); padding: 24px 0 64px; }
.page-featured-clients .quotes { margin-top: 64px; }
@media (min-width: 1024px) {
  .page-featured-clients .intro__heading { margin-top: 0; }
  .page-featured-clients .intro__aside { margin-top: 6px; }
  .page-featured-clients .benefits { margin-top: 96px; padding: 24px 0 96px; }   /* band: in 200, 24 top / 200 bottom */
  .page-featured-clients .quotes { margin-top: 24px; }                              /* band bottom-padding owns the 200; 24 to quotes */
}

/* Case study (Sphere, Figma 133:890) — the Project-Details band sits below the photo
   hero (reuse of product_specs, which hugs its product hero at 0). */
.page-blade-platforms-las-vegas-the-sphere .product-specs { margin-top: 64px; }
@media (min-width: 1024px) { .page-blade-platforms-las-vegas-the-sphere .product-specs { margin-top: 80px; } }

/* ----- Value Cards (Figma 129:10151, About; mobile derived) -----
   #F5F5F5 full-bleed band: eyebrow + "+" divider + 2-col header (heading left /
   body right), then a 3-up grid of white icon cards (icon 80 + title h6 + body).
   Header rhythm = eyebrow y0 → divider y176 → content y284 (Blade standard). */
.value-cards { margin-top: 64px; background: var(--blade-gray-1); padding: 24px 0 64px; }
@media (min-width: 1024px) { .value-cards { margin-top: 96px; padding: 24px 0 96px; } }
.value-cards__eyebrow { font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px; text-transform: uppercase; color: #000; opacity: 0.5; margin: 0; }
.value-cards .blade-divider { margin-top: 0; }
.value-cards__header { display: flex; flex-direction: column; gap: 24px; margin-top: 44px; }
.value-cards__heading { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; letter-spacing: -0.0313em; color: #000; margin: 0; }
.value-cards__body { font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: rgba(0,0,0,0.5); margin: 0; }
.value-cards__grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 48px; }
.value-cards__card { background: #fff; border-radius: 4px; padding: 32px; display: flex; flex-direction: column; gap: 24px; min-height: 315px; justify-content: space-between; min-width: 0; }
.value-cards__icon { width: 80px; height: 80px; flex-shrink: 0; }
.value-cards__card-text { display: flex; flex-direction: column; gap: 16px; }
.value-cards__card-title { font-family: var(--blade-font); font-weight: 600; font-size: 24px; line-height: 28px; color: #000; margin: 0; }
.value-cards__card-body { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: rgba(0,0,0,0.5); margin: 0; }
@media (min-width: 1024px) {
  .value-cards .blade-divider { margin-top: 0; }   /* divider at section top (eyebrow removed) */
  .value-cards__header { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 0; margin-top: 48px; }   /* content @ y284 */
  .value-cards__heading { font-size: 64px; line-height: 64px; width: 57.97%; }   /* 807 of 1392 */
  .value-cards__body { width: 32.76%; margin-top: 51px; }   /* 456 of 1392; body @ y335 (51 below heading) */
  .value-cards__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 64px; }   /* cards @ y476 */
}

/* ----- Product Hero (Figma 123:7248 top, /truck-mounts/<slug>/; mobile derived) -----
   #F5F5F5 band: white photo card (left) | info column (right): chips, H1 + model,
   description, 3 stat cards, primary + secondary buttons. */
.product-hero { background: var(--blade-gray-1); padding: 40px 0 64px; }
.product-hero__inner { display: flex; flex-direction: column; gap: 40px; }
.product-hero__media { background: #fff; border-radius: 4px; padding: 24px; }
.product-hero__media img { display: block; width: 100%; height: auto; border-radius: 4px; }
.product-hero__info { display: flex; flex-direction: column; gap: 40px; }
.product-hero__head { display: flex; flex-direction: column; gap: 24px; }
.product-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.product-hero__chip { display: inline-flex; align-items: center; gap: 4px; padding: 8px 12px 8px 8px; border: 1px solid rgba(0,0,0,0.5); border-radius: 4px; font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px; text-transform: uppercase; color: #000; }
.product-hero__chip-dot { width: 4px; height: 4px; border-radius: 50%; background: #000; flex-shrink: 0; }
.product-hero__title { margin: 0; font-family: var(--blade-font); font-weight: 600; font-size: 36px; line-height: 1.05; letter-spacing: -0.037em; color: #000; }
.product-hero__model { margin: 0; font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: #000; }
.product-hero__body { margin: 0; font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: #000; opacity: 0.5; }
.product-hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; margin: 0; padding: 0; }
.product-hero__stat { background: #fff; border-radius: 4px; padding: 20px; min-height: 152px; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; min-width: 0; }  /* min-width:0 so a no-space value (e.g. "1168lbs") can't blow out the 3-col grid */
.product-hero__stat-value { font-family: var(--blade-font); font-weight: 600; font-size: 28px; line-height: 32px; color: #000; overflow-wrap: anywhere; }
.product-hero__stat-label { font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px; text-transform: uppercase; color: #000; opacity: 0.5; }
.product-hero__buttons { display: flex; flex-direction: column; gap: 8px; }
.product-hero__btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; height: 48px; border-radius: 4px; font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px; text-transform: uppercase; text-decoration: none; }
.product-hero__btn--primary { background: var(--blade-blue); color: #fff; }
.product-hero__btn--alt { background: transparent; border: 1px solid rgba(0,0,0,0.2); color: #000; }
.product-hero__btn--alt:hover { background: rgba(0,0,0,0.04); }
@media (min-width: 1024px) {
  .product-hero { padding: 60px 0 0; }
  .product-hero__inner { flex-direction: row; align-items: flex-start; gap: 72px; }
  .product-hero__media { flex: 0 0 690px; padding: 40px 32px 32px; }
  /* Tall portrait gallery + short info → pin the info so it stays in view while
     the gallery scrolls (standard PDP pattern); kills the dead right column
     without cropping the photo. align-self:start keeps it content-height (not
     stretched) so sticky engages; top clears the 68px fixed nav. */
  .product-hero__info { flex: 0 1 573px; gap: 48px; position: sticky; top: 88px; align-self: flex-start; }
  .product-hero__title { font-size: 54px; line-height: 58px; }
  .product-hero__stat-value { font-size: 32px; line-height: 34px; }
}

/* ----- Product hero gallery (Figma 124:7667) — main image + prev/next arrows +
   thumbnail strip, inside the white photo card. Renders only with >1 photo. ----- */
.product-hero__gallery { display: flex; flex-direction: column; gap: 24px; padding: 24px; }
/* Box is PORTRAIT 3:4 to fit the real photos (all vertical phone shots, 3:4) edge
   to edge — the Figma's landscape box assumed tidy stock and would crop them. The
   bottom anchor below is a safety net for any non-3:4 photo on other models. */
.product-hero__gallery-main { position: relative; aspect-ratio: 3 / 4; border-radius: 4px; overflow: hidden; }
/* Portrait job-site photos in a landscape crop box: anchor to the bottom so the
   truck/vehicle stays in frame (the boom + sky get cropped, not the machine). */
.product-hero__gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; display: block; border-radius: 4px; }
.product-hero__gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; padding: 0; border: 0; background: none; cursor: pointer; line-height: 0;
}
.product-hero__gallery-arrow img { width: 40px; height: 40px; display: block; }
.product-hero__gallery-arrow--prev { left: 0; }
.product-hero__gallery-arrow--next { right: 0; }
.product-hero__thumbs { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; overflow-x: auto; scrollbar-width: none; }
.product-hero__thumbs::-webkit-scrollbar { display: none; }
.product-hero__thumb { flex: 0 0 136px; }
.product-hero__thumb button { display: block; width: 136px; height: 91px; padding: 0; border: 0; border-radius: 4px; overflow: hidden; cursor: pointer; background: none; opacity: 0.55; transition: opacity 150ms; }
.product-hero__thumb button img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; display: block; border-radius: 4px; }
.product-hero__thumb.is-active button, .product-hero__thumb button:hover { opacity: 1; }
@media (min-width: 1024px) {
  .product-hero__gallery { gap: 40px; padding: 40px 32px 32px; }   /* Figma card gap img→thumbs = 40 */
}

/* ----- Product Specs (Figma 123:7248 lower band; mobile derived) -----
   Continues the #F5F5F5 band: divider + "Technical Specifications" + a 2-col grid
   of white category cards (title + label/value rows, hairline per row) + button. */
.product-specs { background: var(--blade-gray-1); margin-top: 0; padding: 64px 0 24px; }
.product-specs__heading { margin: 44px 0 0; font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; letter-spacing: -0.037em; color: #000; }
.product-specs__grid { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.product-specs__card { background: #fff; border-radius: 4px; padding: 32px; display: flex; flex-direction: column; gap: 32px; }
.product-specs__card-title { margin: 0; font-family: var(--blade-font); font-weight: 600; font-size: 24px; line-height: 28px; color: #000; }
.product-specs__rows { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.product-specs__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; border-top: 1px solid var(--blade-gray-2); }
.product-specs__row-label { margin: 0; font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px; text-transform: uppercase; color: #000; }
.product-specs__row-value { margin: 0; font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: #000; text-align: right; }
.product-specs__cta { display: inline-flex; align-items: center; gap: 12px; margin-top: 32px; height: 48px; padding: 0 24px; border-radius: 4px; background: var(--blade-blue); color: #fff; font-family: var(--blade-font); font-weight: 600; font-size: 14px; text-transform: uppercase; text-decoration: none; align-self: flex-start; }
@media (min-width: 1024px) {
  .product-specs { padding: 80px 0 24px; }            /* tightened band bottom (marketing whitespace) */
  .product-specs .blade-divider { margin-top: 0; }
  .product-specs__heading { font-size: 54px; line-height: 58px; margin-top: 56px; }
  .product-specs__grid { grid-template-columns: repeat(2, 1fr); margin-top: 64px; }
}

/* ----- Product Reach (Figma 124:8525; mobile derived) -----
   White band after the gray spec band. Small-caps eyebrow at top, then a 2-col
   body: LEFT "Full working envelope" heading + sub-heading + description + reach
   stat rows (hairline above each row + a closing hairline); RIGHT a white card
   holding the reach-envelope diagram. Mobile stacks (text then diagram). */
.product-reach { margin-top: 40px; }
.product-reach__inner { display: flex; flex-direction: column; gap: 24px; }
.product-reach__eyebrow {
  margin: 0; font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px;
  text-transform: uppercase; color: #000; opacity: 0.5;
}
.product-reach__row { display: flex; flex-direction: column; gap: 40px; }
.product-reach__text { display: flex; flex-direction: column; gap: 32px; }
.product-reach__heading {
  margin: 0; font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px;
  letter-spacing: -0.0313em; color: #000;
}
.product-reach__list { display: flex; flex-direction: column; gap: 40px; }
.product-reach__lead { display: flex; flex-direction: column; gap: 16px; }
.product-reach__subheading { margin: 0; font-family: var(--blade-font); font-weight: 600; font-size: 18px; line-height: 26px; color: #000; }
.product-reach__body { margin: 0; font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: #000; opacity: 0.5; }
.product-reach__rows { margin: 0; display: flex; flex-direction: column; gap: 32px; }
.product-reach__hairline { display: block; height: 1px; background: var(--blade-gray-2); }
.product-reach__rowitem { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product-reach__row-label { margin: 0; font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px; text-transform: uppercase; color: #000; }
.product-reach__row-value { margin: 0; font-family: var(--blade-font); font-weight: 500; font-size: 14px; line-height: 24px; color: #000; text-align: right; }
.product-reach__media {
  background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
/* Card HUGS the diagram (no fixed 690/800 aspect → no ~280px of white around a near-square chart). */
.product-reach__media img { width: 100%; height: auto; object-fit: contain; opacity: 0.8; display: block; }
@media (min-width: 1024px) {
  .product-reach { margin-top: 24px; }                  /* Figma: specs gray band → reach = 24 */
  .product-reach__inner { gap: 0; }                     /* eyebrow→row spacing comes from the row margin alone */
  .product-reach__row { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 0; margin-top: 64px; }  /* tightened eyebrow→row (was 196) + top-align cols (kill centering void) — marketing whitespace */
  .product-reach__text { width: 41.092%; gap: 48px; }   /* 572 of 1392 */
  .product-reach__heading { font-size: 64px; line-height: 64px; }
  .product-reach__media { width: 49.569%; }             /* 690 of 1392 */
}

/* ----- Capabilities (Figma 126:9048, Industry detail; mobile derived) -----
   Top: lead column (eyebrow + 64px heading + bordered chips) | body paragraphs;
   bottom: blue stat card + sector photo. Mobile stacks. */
.capabilities { margin-top: 64px; }
@media (min-width: 1024px) { .capabilities { margin-top: 96px; } }  /* Figma: intro→capabilities = 200 */
.capabilities__inner { display: flex; flex-direction: column; gap: 40px; }
.capabilities__top { display: flex; flex-direction: column; gap: 32px; }
.capabilities__lead { display: flex; flex-direction: column; gap: 32px; }
.capabilities__eyebrow {
  font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px;
  text-transform: uppercase; color: #000000; opacity: 0.5; margin: 0;
}
.capabilities__heading {
  font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px;
  letter-spacing: -0.0313em; color: #000000; margin: 0;
}
.capabilities__chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.capabilities__chip {
  display: inline-flex; align-items: center; gap: 4px;
  height: 48px; padding: 0 20px 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 4px;
  font-family: var(--blade-font); font-weight: 500; font-size: 16px; line-height: 26px; color: #000000;
}
.capabilities__chip-dot { flex: 0 0 12px; height: 12px; position: relative; }
.capabilities__chip-dot::before { content: ""; position: absolute; left: 4px; top: 4px; width: 4px; height: 4px; background: #000000; }
.capabilities__body { display: flex; flex-direction: column; gap: 24px; }
.capabilities__para { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: #000000; margin: 0; }
.capabilities__para--lead { font-weight: 500; font-size: 20px; line-height: 26px; }
.capabilities__media { display: flex; flex-direction: column; gap: 12px; }
.capabilities__stat {
  flex: 0 0 auto;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  min-height: 200px; padding: 24px;
  background: var(--blade-blue); border-radius: 4px; color: #ffffff;
}
.capabilities__stat-value { font-family: var(--blade-font); font-weight: 600; font-size: 64px; line-height: 64px; }
.capabilities__stat-label { font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px; text-transform: uppercase; }
.capabilities__photo { border-radius: 4px; overflow: hidden; aspect-ratio: 16 / 10; }
.capabilities__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 1024px) {
  .capabilities__top { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 40px; }
  .capabilities__lead { width: 62.7%; }                /* 751 of 1198-ish; chips span this */
  .capabilities__heading { font-size: 64px; line-height: 64px; max-width: 572px; }
  .capabilities__body { width: 32.7%; }                /* 456 of 1392 */
  .capabilities__para--lead { font-size: 24px; line-height: 28px; }
  .capabilities__para:not(.capabilities__para--lead) { font-size: 18px; line-height: 26px; }
  .capabilities__media { flex-direction: row; min-height: 360px; }
  .capabilities__stat { flex: 0 0 222px; }
  .capabilities__photo { flex: 1; aspect-ratio: auto; }
}

/* ----- Why Choose (Figma 79:3274, Industry detail; mobile derived) -----
   Eyebrow, then 2-col: tall sector photo (left) + heading & reason rows (right).
   Each reason = title + body, hairline below. Mobile stacks (photo on top). */
.why-choose { margin-top: 64px; }
@media (min-width: 1024px) { .why-choose { margin-top: 24px; } }  /* Figma: trucks(full-bleed)→why-choose = 24 */
.why-choose__inner { display: flex; flex-direction: column; gap: 24px; }
.why-choose__eyebrow {
  font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px;
  text-transform: uppercase; color: #000000; opacity: 0.5; margin: 0;
}
.why-choose__cols { display: flex; flex-direction: column; gap: 32px; }
.why-choose__photo { border-radius: 4px; overflow: hidden; aspect-ratio: 690 / 800; }
.why-choose__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-choose__content { display: flex; flex-direction: column; gap: 32px; }
.why-choose__heading {
  font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px;
  letter-spacing: -0.0313em; color: #000000; margin: 0;
}
.why-choose__lead { font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: #000000; opacity: 0.5; margin: 0; }
.why-choose__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.why-choose__item { display: flex; flex-direction: column; gap: 16px; padding-bottom: 40px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.why-choose__item-title { font-family: var(--blade-font); font-weight: 600; font-size: 18px; line-height: 26px; color: #000000; margin: 0; }
.why-choose__item-body { font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: #000000; opacity: 0.5; margin: 0; }
/* Accordion variant (Home): reasons collapse to titles to reclaim height; native <details>, no JS. */
.why-choose__list--acc { gap: 0; }
.why-choose__item--acc { display: block; gap: 0; padding-bottom: 0; }
.why-choose__acc { display: block; }
.why-choose__acc-summary { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 20px 0; cursor: pointer; list-style: none; }
.why-choose__acc-summary::-webkit-details-marker { display: none; }
.why-choose__item--acc .why-choose__item-body { padding: 0 0 24px; }
.why-choose__marker { position: relative; flex: none; width: 16px; height: 16px; margin-top: 5px; color: #000; }
.why-choose__marker::before, .why-choose__marker::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 2px; background: currentColor; transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}
.why-choose__marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.why-choose__acc[open] .why-choose__marker::after { transform: translate(-50%, -50%) rotate(0); }
@media (min-width: 1024px) {
  .why-choose__cols { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 0; }
  .why-choose--reverse .why-choose__cols { flex-direction: row-reverse; }   /* photo on the right (About IPAF) */
  /* Accordion (Home): photo matches the collapsed column's height (cover-crop) so
     there's no dead space beside it and the section stays compact. */
  .why-choose--acc .why-choose__cols { align-items: stretch; }
  .why-choose--acc .why-choose__photo { aspect-ratio: auto; }
  .why-choose__photo { width: 49.57%; }                 /* 690 of 1392 */
  .why-choose__content { width: 41.1%; gap: 48px; }     /* 572 of 1392 */
  .why-choose__heading { font-size: 64px; line-height: 64px; }
}

/* ----- Industry Grid (Figma 96:6948, listing page; mobile derived) -----
   Eyebrow + divider + heading + filter tabs, then a 3-col grid of sector cards
   (same card design as the home industries carousel; 456×520). Mobile = 1 col. */
/* Figma 96:6948: the grid group sits at y704, just 24px below the 680px hero. */
.industry-grid { margin-top: 24px; }
.industry-grid__eyebrow {
  font-family: var(--blade-font); font-size: 12px; font-weight: 600; line-height: 12px;
  text-transform: uppercase; color: #000000; opacity: 0.5; margin: 0;
}
.industry-grid .blade-divider { margin-top: 0; }
.industry-grid__heading {
  margin: 44px 0 0;
  font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px;
  color: #000000;
}
.industry-grid__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.industry-grid__tab {
  height: 48px; padding: 0 24px; border: 0; border-radius: 4px; cursor: pointer;
  font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px;
  text-transform: uppercase; background: var(--blade-gray-1); color: #000000;
}
.industry-grid__tab.is-active { background: #000000; color: #ffffff; }
.industry-grid__grid { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.industry-grid__card {
  position: relative; aspect-ratio: 456 / 520; border-radius: 4px; overflow: hidden;
  display: block; color: #ffffff; background: var(--blade-gray-4);
}
.industry-grid__card-img { position: absolute; inset: 0; }
.industry-grid__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industry-grid__card::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.3); }
.industry-grid__card-index {
  position: absolute; z-index: 2; left: 24px; top: 24px;
  font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px; text-transform: uppercase;
}
.industry-grid__card-foot {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px;
}
.industry-grid__card-title { font-family: var(--blade-font); font-weight: 600; font-size: 30px; line-height: 28px; margin: 0; }
.industry-grid__card-arrow {
  flex: 0 0 40px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); line-height: 0;
}
@media (min-width: 1024px) {
  .industry-grid__eyebrow { font-size: 14px; line-height: 20px; }
  .industry-grid .blade-divider { margin-top: 0; }
  .industry-grid__heading { width: 83.1897%; margin-top: 48px; font-size: 64px; line-height: 64px; letter-spacing: -0.0313em; }
  .industry-grid__tabs { margin-top: 40px; }
  .industry-grid__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----- CTA Form (Figma 96:6601, listing page; mobile derived) -----
   #F5F5F5 card (5% watermark + corner marks): left info panel + right white form
   card. Mobile stacks. The form is a Gravity Form (rendered on staging/prod). */
/* Figma 96:6601: 140px above (clients→cta) AND below (cta→footer) on desktop. */
.cta-form { margin-top: 64px; margin-bottom: 64px; }
@media (min-width: 1024px) { .cta-form { margin-top: 80px; margin-bottom: 80px; } }
.cta-form__card { position: relative; overflow: hidden; background: var(--blade-gray-1); border-radius: 4px; padding: 24px; }
.cta-form__watermark { position: absolute; z-index: 0; top: -160px; left: -220px; width: 720px; height: auto; opacity: 0.5; pointer-events: none; }
/* Corner marks are 1px "+" strokes (Figma 96:6601), not solid squares. */
.cta-form__mark {
  position: absolute; z-index: 1; width: 12px; height: 12px; pointer-events: none;
  background:
    linear-gradient(#808080, #808080) center / 12px 1px no-repeat,
    linear-gradient(#808080, #808080) center / 1px 12px no-repeat;
}
.cta-form__mark--tl { top: 24px; left: 24px; }
.cta-form__mark--tr { top: 24px; right: 24px; }
.cta-form__mark--bl { bottom: 24px; left: 24px; }
.cta-form__mark--br { bottom: 24px; right: 24px; }
/* Bottom-left boom-truck photo in the info column (Figma 96:6601). */
.cta-form__photo { position: relative; z-index: 2; margin-top: auto; width: 320px; max-width: 100%; height: auto; border-radius: 4px; }
.cta-form__info { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 32px; padding: 24px; }
.cta-form__head { display: flex; flex-direction: column; gap: 24px; }
.cta-form__heading { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; letter-spacing: -0.0313em; color: #000; margin: 0; }
.cta-form__body { max-width: 456px; font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: #000; opacity: 0.5; margin: 0; }
.cta-form__contacts { display: flex; flex-wrap: wrap; gap: 32px; }
.cta-form__contact { display: flex; flex-direction: column; gap: 16px; }
.cta-form__contact-label { font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px; text-transform: uppercase; color: #000; opacity: 0.5; }
.cta-form__contact-value { font-family: var(--blade-font); font-weight: 500; font-size: 18px; line-height: 26px; color: #000; text-decoration: none; }
a.cta-form__contact-value:hover { opacity: 0.7; }
.cta-form__panel { position: relative; z-index: 2; margin-top: 24px; background: #fff; border-radius: 4px; padding: 32px 24px; display: flex; flex-direction: column; gap: 32px; }
.cta-form__panel-heading { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; color: #000; margin: 0; }
/* Local preview form (shown only when Gravity Forms is inactive) — mirrors the
   live GF field set + the Figma 96:6601 design. */
.cta-form__preview { display: flex; flex-direction: column; gap: 16px; }
.cta-form__row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 1024px) { .cta-form__row { grid-template-columns: 1fr 1fr; } }
.cta-form__field { display: flex; flex-direction: column; gap: 12px; }
.cta-form__field > span { font-family: var(--blade-font); font-weight: 500; font-size: 16px; line-height: 26px; color: #000; }
.cta-form__preview-note { font-family: var(--blade-font); font-size: 12px; line-height: 18px; color: #000; opacity: 0.4; margin: 4px 0 0; }

/* Shared input/button look — applies to the GF output (staging/prod) and the preview. */
.cta-form__form .gform_wrapper .gform_fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form__form .gform_wrapper .gfield { grid-column: span 2; }
.cta-form__form .gform_wrapper .gfield label { font-family: var(--blade-font); font-weight: 500; font-size: 16px; line-height: 26px; color: #000; margin-bottom: 12px; display: block; }
.cta-form__form .gform_wrapper input[type=text],
.cta-form__form .gform_wrapper input[type=email],
.cta-form__form .gform_wrapper input[type=tel],
.cta-form__form .gform_wrapper textarea,
.cta-form__preview input,
.cta-form__preview textarea {
  width: 100%; box-sizing: border-box; padding: 14px 16px; border: 1px solid rgba(137, 138, 138, 0.5); border-radius: 4px;
  background: #fff; font-family: var(--blade-font); font-size: 16px; color: #000;
}
.cta-form__preview textarea { resize: vertical; min-height: 96px; }
.cta-form__form .gform_wrapper .gform_button,
.cta-form__submit {
  width: 100%; height: 48px; border: 0; border-radius: 4px; background: var(--blade-blue); color: #fff;
  font-family: var(--blade-font); font-weight: 600; font-size: 14px; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
@media (min-width: 1024px) {
  .cta-form__card { min-height: 776px; display: flex; align-items: stretch; justify-content: space-between; padding: 24px; }
  .cta-form__info { width: 44%; padding: 48px 0 48px 48px; }
  .cta-form__heading { font-size: 64px; line-height: 64px; }
  .cta-form__body { font-size: 18px; line-height: 26px; }
  .cta-form__panel { width: 39.44%; margin-top: 0; padding: 48px; gap: 40px; }
}

/* ----- Contact (Figma 154:1296) — centered "Get in Touch" hero + divider, then
   info (left) | #F5F5F5 form card (right). Reuses the shared .cta-form__ form
   field styling. Mobile derived (stacks). ----- */
/* Figma 154:1296: ~140px of breathing room below the content before the footer
   (the site-wide content→footer rhythm), 64 on mobile. */
.contact { padding-top: 64px; padding-bottom: 64px; }
.contact__heading { font-family: var(--blade-font); font-weight: 600; font-size: 48px; line-height: 1; letter-spacing: -0.04em; color: #000; text-align: center; margin: 0 auto; max-width: 924px; }
.contact .blade-divider { margin-top: 64px; }
.contact .blade-divider::after { left: calc(50% - 4px); }   /* centered "+" marker */
.contact__grid { display: flex; flex-direction: column; gap: 64px; margin-top: 64px; }
.contact__info { display: flex; flex-direction: column; gap: 64px; }
.contact__block { display: flex; flex-direction: column; gap: 40px; }
.contact__block-heading { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 1.1; letter-spacing: -0.0417em; color: #000; margin: 0; }
.contact__details { display: flex; flex-direction: column; gap: 32px; }
.contact__detail { display: flex; flex-direction: column; gap: 16px; }
.contact__detail-label { font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px; text-transform: uppercase; color: #000; opacity: 0.5; }
.contact__detail-value { font-family: var(--blade-font); font-weight: 500; font-size: 18px; line-height: 26px; color: #000; text-decoration: none; }
a.contact__detail-value:hover { opacity: 0.7; }
.contact__offices { list-style: none; margin: 0; padding: 0; }
.contact__office { display: flex; align-items: center; gap: 8px; padding: 18px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.contact__office-dot { width: 4px; height: 4px; border-radius: 50%; background: #000; flex-shrink: 0; margin: 0 4px; }
.contact__office-city { font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: #000; flex: 1; }
.contact__office-role { font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: #000; opacity: 0.5; text-align: right; }
.contact__card { background: var(--blade-gray-1); border-radius: 4px; padding: 24px; display: flex; flex-direction: column; gap: 24px; }
.contact__form-heading { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; color: #000; margin: 0; }
.contact__map { margin-top: 64px; border-radius: 4px; overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.1); line-height: 0; }
.contact__map iframe { display: block; width: 100%; height: 340px; border: 0; }
@media (min-width: 1024px) {
  .contact { padding-top: 64px; padding-bottom: 80px; }
  .contact__heading { font-size: 100px; }
  .contact .blade-divider { margin-top: 80px; }
  .contact__grid { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 24px; margin-top: 80px; }
  .contact__info { flex: 0 1 573px; }
  .contact__block-heading { font-size: 48px; line-height: 54px; }
  .contact__card { flex: 0 0 573px; padding: 48px; gap: 32px; }
  .contact__map { margin-top: 80px; }
  .contact__map iframe { height: 420px; }
}

/* ----- Case Study (Figma 133:890) — 2-col sticky: details sidebar + narrative.
   hero→case-study gap 140 / 64 (Blade rhythm); sidebar position:sticky on desktop. */
/* padding-bottom: 0 — the cta_panel that always follows owns the gap (margin-top
   64/140); a padding-bottom here would double it (→ 280 on desktop). */
.case-study { padding-top: 64px; padding-bottom: 0; }
.case-study__inner { display: flex; flex-direction: column; gap: 40px; }
.case-study__sidebar { background: var(--blade-gray-1); border-radius: 4px; padding: 24px; display: flex; flex-direction: column; gap: 32px; }
.case-study__details { display: flex; flex-direction: column; gap: 24px; }
.case-study__sidebar-heading { font-family: var(--blade-font); font-weight: 600; font-size: 24px; line-height: 28px; color: #000; margin: 0; }
.case-study__specs { margin: 0; }
.case-study__spec { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 0; border-top: 1px solid #e6e6e6; }
.case-study__spec-label { font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px; text-transform: uppercase; color: #000; }
.case-study__spec-value { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: #000; text-align: right; }
.case-study__mini { background: #fff; border-radius: 4px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.case-study__mini-heading { font-family: var(--blade-font); font-weight: 600; font-size: 24px; line-height: 28px; color: #000; margin: 0; }
.case-study__mini-body { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: rgba(0, 0, 0, 0.5); margin: 0; }
.case-study__mini-cta { width: 100%; height: 48px; background: var(--blade-blue); color: #fff; border-radius: 4px; font-size: 14px; font-weight: 600; line-height: 24px; text-transform: uppercase; }
.case-study__mini-cta:hover { background: #1850e0; }
.case-study__main { display: flex; flex-direction: column; gap: 64px; }
.case-study__block { display: flex; flex-direction: column; gap: 24px; }
.case-study__eyebrow { font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px; text-transform: uppercase; color: rgba(0, 0, 0, 0.5); margin: 0; }
.case-study__block-heading { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 36px; letter-spacing: -0.037em; color: #000; margin: 0; }
.case-study__prose { display: flex; flex-direction: column; gap: 24px; }
.case-study__prose p { font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: #000; margin: 0; }
.case-study__photo { border-radius: 4px; overflow: hidden; line-height: 0; }
.case-study__photo img { display: block; width: 100%; height: auto; }
.case-study__stats-wrap { display: flex; flex-direction: column; gap: 24px; }
.case-study__stats { display: grid; grid-template-columns: 1fr; gap: 12px; list-style: none; margin: 0; padding: 0; }   /* 1-up on mobile so values/labels stay on one line; 3-up on desktop */
.case-study__stat { background: var(--blade-gray-1); border-radius: 4px; padding: 20px; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.case-study__stat-value { font-family: var(--blade-font); font-weight: 600; font-size: 32px; line-height: 34px; color: #000; }
.case-study__stat-label { font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 20px; text-transform: uppercase; color: rgba(0, 0, 0, 0.5); }
@media (min-width: 1024px) {
  .case-study { padding-top: 80px; }
  .case-study__inner { display: grid; grid-template-columns: 573px minmax(0, 1fr); column-gap: 129px; align-items: start; }
  .case-study__sidebar { position: sticky; top: 88px; padding: 32px; gap: 40px; }
  .case-study__mini { padding: 32px; gap: 32px; }
  .case-study__main { gap: 80px; }
  .case-study__block { gap: 40px; }
  .case-study__block-heading { font-size: 54px; line-height: 58px; }
  .case-study__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ----- Services (Figma 0:312 desktop / 59:738 mobile) -----
   Full-bleed photo + frosted dark overlay; butts the trucks section on desktop. */
.services {
  position: relative;
  margin-top: 52px;
  height: 640px;
  overflow: hidden;
  color: #ffffff;
}
@media (min-width: 1024px) { .services { margin-top: 0; height: 800px; } }
.services__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}
.services__bg.is-active { opacity: 1; }
.services__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78.8% 84.3%;        /* mobile crop window (591×780 @ -182,-118) */
}
@media (min-width: 1024px) {
  .services__bg img { object-position: 46.7% 66.5%; }  /* desktop (1500×1000 @ -28,-133) */
}
.services__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.services__inner { position: relative; height: 100%; }
.services__eyebrow {
  position: absolute;
  top: 24px;
  font-family: var(--blade-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
  opacity: 0.5;
}
.services__content {
  position: absolute;
  top: 100px;
  left: var(--blade-container-pad);
  right: var(--blade-container-pad);
  display: grid;                        /* copies stack in one cell + CTA below */
  gap: 32px;
  justify-items: start;
}
.services__copy {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}
.services__copy.is-active { opacity: 1; pointer-events: auto; }
.services__ctas { grid-row: 2; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.services__heading {
  font-family: var(--blade-font);
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  color: #ffffff;
  margin: 0;
}
.services__body { font-size: 16px; line-height: 24px; }
.services__cta {
  width: 160px;
  height: 48px;
  font-family: var(--blade-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  background: var(--blade-blue);
  color: #ffffff;
  border-radius: 4px;
}
.services__cta:hover { background: #1850e0; }
/* Secondary CTA (audit #6): outline/ghost beside the blue primary, on the dark panel. */
.services__cta--ghost {
  width: auto;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.services__cta--ghost:hover { background: rgba(255, 255, 255, 0.22); }
.services__tabs {
  position: absolute;
  top: 588px;
  left: var(--blade-container-pad);
  right: var(--blade-container-pad);
  display: flex;
  gap: 8px;
}
.services__tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.services__tab-rule {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
/* Per-slide progress: fills over the rotation interval while its slide is live. */
.services__tab-fill {
  display: block;
  height: 100%;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
}
.services__tab.is-active .services__tab-fill {
  animation: services-fill var(--services-interval, 6000ms) linear forwards;
}
@keyframes services-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .services__tab.is-active .services__tab-fill { animation: none; transform: scaleX(1); }
}
.services__tab-label {
  font-family: var(--blade-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.services__tab:not(.is-active) .services__tab-label { visibility: hidden; }
@media (min-width: 1024px) {
  .services__eyebrow { font-size: 14px; line-height: 24px; }
  .services__content {
    top: 393px;
    left: var(--blade-container-pad-lg);
    right: auto;
    /* abs children resolve % against the PADDING box (1440), not the 1392
       content box — hence 690/1440, not 690/1392. */
    width: 47.9167%;
    gap: 30px;
  }
  .services__heading {
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -0.0417em;
  }
  .services__body { font-size: 18px; line-height: 26px; }
  .services__ctas {
    /* The comp's single "learn more" sits top-right (x1256/y630 of the section:
       630-393 = 237px below the content top). Anchor the button GROUP's RIGHT edge
       to the container's right padding edge so a second, wider button grows leftward
       without overflowing: target right = container right (x1416) = content-box right
       (x714) + 702; 702/690 = 101.7391% → right:-101.7391% of the 690px content box.
       (grid-row is moot — an absolute child leaves the grid flow.) */
    position: absolute;
    top: 237px;
    left: auto;
    right: -101.7391%;
    flex-direction: row;
    align-items: center;
  }
  .services__tabs { top: 742px; gap: 12px; }
  .services__tab-label { font-size: 14px; line-height: 24px; }
  .services__tab:not(.is-active) .services__tab-label { visibility: visible; }
}

/* ----- Logos marquee ----- */
.logos-marquee { background: var(--blade-section-dark); padding: 2.5rem 0; overflow: hidden; }
.logos-marquee__heading {
  text-align: center;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blade-fg-on-dark-2);
  margin: 0 0 1.5rem;
}
.logos-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-marquee__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: blade-marquee 45s linear infinite;
}
@media (min-width: 1024px) { .logos-marquee__track { gap: 6rem; } }
.logos-marquee__logo { height: 22px; width: auto; opacity: 0.7; flex-shrink: 0; }
@keyframes blade-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ----- Features ----- */
.features { padding: 5rem 0; }
@media (min-width: 768px) { .features { padding: 7rem 0; } }
@media (min-width: 1024px) { .features { padding: 9rem 0; } }
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;                                  /* hairline shows the grid bg through */
  background: var(--blade-card-border);
  border: 1px solid var(--blade-card-border);
}
@media (min-width: 1024px) { .features__grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 320px;
  padding: 1.5rem;
  background: var(--blade-card-dark);
}
@media (min-width: 1024px) { .feature-card { min-height: 454px; padding: 2.5rem; } }
.feature-card__icon { width: 60px; height: 60px; font-size: 2.5rem; line-height: 60px; }
.feature-card__icon svg, .feature-card__icon img { width: 60px; height: 60px; object-fit: contain; }
.feature-card__text { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-card__title {
  font-family: 'Saans', system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--blade-fg-on-dark);
  margin: 0;
}
.feature-card__body { font-size: 1rem; line-height: 26px; color: rgba(250,250,249,0.7); margin: 0; }

/* ----- Practice Areas (card grid) ----- */
.practice-areas { padding: 5rem 0; }
@media (min-width: 1024px) { .practice-areas { padding: 9rem 0; } }
.practice-areas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .practice-areas__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .practice-areas__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.practice-card {
  position: relative;
  display: block;
  padding: 1.75rem;
  background: var(--blade-card-dark);
  border: 1px solid var(--blade-card-border);
  border-radius: 0.5rem;
  color: var(--blade-fg-on-dark);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease;
}
a.practice-card:hover { transform: translateY(-2px); border-color: var(--blade-fg-on-dark-2); }
.practice-card__icon { font-size: 1.75rem; line-height: 1; margin-bottom: 1rem; }
.practice-card__icon svg, .practice-card__icon img { width: 40px; height: 40px; object-fit: contain; }
.practice-card__title { font-family: 'Saans', system-ui, sans-serif; font-size: 1.125rem; line-height: 1.4; font-weight: 600; margin: 0 0 0.5rem; }
.practice-card__blurb { font-size: 0.9375rem; line-height: 1.4; color: rgba(250,250,249,0.7); margin: 0; }
.practice-card__arrow {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--blade-fg-on-dark-2);
  transition: transform 200ms ease, color 200ms ease;
}
a.practice-card:hover .practice-card__arrow { transform: translateX(4px); color: var(--blade-fg-on-dark); }

/* Image-card treatment (matches PracticeAreas.tsx) — overrides the legacy card. */
.practice-card--image {
  padding: 0;
  background: none;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  height: 440px;
  transform: none;
}
@media (min-width: 1024px) { .practice-card--image { height: 620px; } }
a.practice-card--image:hover { transform: none; }
.practice-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.practice-card__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.85) 100%); }
.practice-card__content { position: absolute; inset: auto 0 0 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 1.5rem; }
.practice-card__text { display: flex; flex-direction: column; gap: 1.5rem; }
.practice-card--image .practice-card__title { font-size: 1.25rem; line-height: 1.5rem; font-weight: 500; color: var(--blade-fg-on-dark); margin: 0; }
@media (min-width: 1024px) { .practice-card--image .practice-card__title { font-size: 1.5rem; } }
.practice-card__desc { font-size: 0.875rem; line-height: 1.3; color: rgba(255,255,255,0.8); margin: 0.5rem 0 0; }
@media (min-width: 1024px) { .practice-card__desc { font-size: 1rem; } }
.practice-card__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.practice-card__tag {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 9999px;
}
.practice-card--image .practice-card__arrow {
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 9999px;
  color: rgba(255,255,255,0.6);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
a.practice-card--image:hover .practice-card__arrow { transform: none; background: #fff; color: #000; border-color: #fff; }

/* ----- AI Insights (tabbed widget — matches AIInsights.tsx) ----- */
.ai-insights { padding: 5rem 0; }
@media (min-width: 768px) { .ai-insights { padding: 7rem 0; } }
@media (min-width: 1024px) { .ai-insights { padding: 9rem 0; } }
.ai-insights__heading {
  text-align: center;
  font-family: 'Saans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.0139em;
  color: var(--blade-fg);
  text-transform: capitalize;
  max-width: 796px;
  margin: 0 auto 4rem;
}
@media (min-width: 1024px) { .ai-insights__heading { font-size: 72px; line-height: 74px; margin-bottom: 6rem; } }
/* Trailing emphasis word rendered in Noe Display italic (AIInsights.tsx "Forward"). */
.ai-insights__heading-em { font-family: 'Noe Display', Georgia, serif; font-style: italic; font-weight: 500; }
.ai-insights__layout { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .ai-insights__layout { flex-direction: row; gap: 0; align-items: center; } }
.ai-insights__tabs { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
@media (min-width: 1024px) { .ai-insights__tabs { flex-direction: column; gap: 1.5rem; width: 33.333%; overflow: visible; padding-bottom: 0; } }
.ai-insights__tab {
  text-align: left;
  white-space: nowrap;
  font-family: 'Saans', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: var(--blade-fg);
  opacity: 0.3;
  background: none;
  border: 0;
  cursor: pointer;
  transition: opacity 200ms ease;
}
@media (min-width: 1024px) { .ai-insights__tab { font-size: 2.25rem; white-space: normal; } }
.ai-insights__tab.is-active { opacity: 1; }
.ai-insights__mockup { display: flex; justify-content: center; }
@media (min-width: 1024px) { .ai-insights__mockup { width: 33.333%; } }
.ai-insights__screen {
  position: relative;
  width: 100%;
  max-width: 448px;
  height: 434px;
  background: var(--blade-card-dark);
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 1024px) { .ai-insights__screen { height: 560px; } }
/* Inset light panel (per Figma): the screenshot lives here and is clipped to it,
   so it never overflows the dark device frame. Ported from AIInsights.tsx. */
.ai-insights__screen-inner {
  position: absolute;
  left: 1.25rem; right: 1.25rem; top: 5rem; bottom: 5rem;
  background: #f4f4f5;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ai-insights__screen-inner { left: 2.5rem; right: 2.5rem; top: 6.25rem; bottom: 6.25rem; }
}
.ai-insights__img {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  width: calc(100% - 2.5rem);
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 0.5rem;
  box-shadow: 0 0 4px rgba(0,0,0,0.04), 0 8px 16px rgba(0,0,0,0.08);
  opacity: 0;
  transition: opacity 500ms ease;
}
@media (min-width: 1024px) { .ai-insights__img { top: 2.5rem; left: 2.5rem; width: calc(100% - 5rem); } }
.ai-insights__img.is-active { opacity: 1; }
.ai-insights__detail { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .ai-insights__detail { width: 33.333%; padding-left: 2rem; } }
.ai-insights__panel { display: none; flex-direction: column; gap: 0.25rem; }
.ai-insights__panel.is-active { display: flex; }
.ai-insights__panel-title { font-size: 1rem; font-weight: 500; line-height: 26px; color: var(--blade-fg); margin: 0; }
.ai-insights__panel-desc { font-size: 1rem; line-height: 26px; color: rgba(10,10,10,0.7); margin: 0; }
/* Legacy fallback body */
.ai-insights__body { font-size: 1rem; line-height: 1.6; color: rgba(10,10,10,0.8); max-width: 720px; }
.ai-insights__body p { margin: 0 0 1rem; }
.ai-insights__body p:last-child { margin-bottom: 0; }

/* ----- How It Works (step cards) ----- */
.how-it-works { padding: 5rem 0; }
@media (min-width: 768px) { .how-it-works { padding: 7rem 0; } }
@media (min-width: 1024px) { .how-it-works { padding: 9rem 0; } }
.how-it-works__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .how-it-works__steps { flex-direction: row; gap: 1rem; } }
.how-it-works__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 380px;
  padding: 1.5rem;
  overflow: hidden;
  color: var(--blade-fg-on-dark);
  background: var(--blade-surface-2);
}
@media (min-width: 1024px) { .how-it-works__card { min-height: 450px; padding: 2rem; } }
/* Graduated palette, cycled for any number of steps */
.how-it-works__card:nth-child(4n+1) { background: #939aa9; }
.how-it-works__card:nth-child(4n+2) { background: #5d5e71; }
.how-it-works__card:nth-child(4n+3) { background: #2b2d36; }
.how-it-works__card:nth-child(4n)   { background: #202129; }
.how-it-works__text { display: flex; flex-direction: column; gap: 0.5rem; }
.how-it-works__title { font-family: 'Saans', system-ui, sans-serif; font-size: 1.5rem; line-height: 1.5rem; font-weight: 500; margin: 0; }
.how-it-works__body { font-size: 1rem; line-height: 26px; color: rgba(250,250,249,0.7); margin: 0; }
.how-it-works__number {
  font-family: 'Noe Display', Georgia, serif;
  font-weight: 300;
  font-size: 120px;
  line-height: 0.85;
  letter-spacing: -0.0333em;
  margin: 0;
  background: linear-gradient(90deg, var(--blade-fg-on-dark), var(--blade-fg-on-dark-2));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}

/* ----- Pricing ----- */
.pricing { padding: 5rem 0; }
@media (min-width: 768px) { .pricing { padding: 7rem 0; } }
@media (min-width: 1024px) { .pricing { padding: 9rem 0; } }
.pricing__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .pricing__grid { flex-direction: row; } }
.pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #5d5e71;
  color: var(--blade-fg-on-dark);
}
/* Featured tier is the darker (Enterprise) card per Pricing.tsx — its colour is
   the emphasis (no white ring). */
.pricing-card--featured {
  background: var(--blade-card-dark);
}
.pricing-card__head {
  padding: 1.5rem;
  background: #444555;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .pricing-card__head { padding: 2.5rem; } }
.pricing-card--featured .pricing-card__head { background: var(--blade-surface-1); }
.pricing-card__description { font-size: 1rem; line-height: 1.4; font-weight: 400; color: rgba(250,250,249,0.7); margin: 0; }
.pricing-card__price-period { font-size: 1rem; font-weight: 500; }
.pricing-card__name {
  font-family: 'Saans', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.0208em;
  text-transform: capitalize;
  margin: 0;
}
@media (min-width: 1024px) { .pricing-card__name { font-size: 3rem; line-height: 56px; } }
.pricing-card__price { font-size: 2rem; font-weight: 500; }
@media (min-width: 1024px) { .pricing-card__price { font-size: 2.25rem; } }
.pricing-card__body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1;
  padding: 2rem 1.5rem;
}
@media (min-width: 1024px) { .pricing-card__body { padding: 2.5rem 3rem; } }
.pricing-card__features { display: flex; flex-direction: column; gap: 0; margin: 0; padding: 0; list-style: none; flex: 1; }
.pricing-card__features li {
  position: relative;
  padding: 1.25rem 0 1.25rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  border-bottom: 1px solid rgba(250,250,249,0.1);
}
.pricing-card__features li:first-child { padding-top: 0; }
.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 1.1rem;
  height: 1.1rem;
  background: currentColor;
  -webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
          mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}
.pricing-card__features li:first-child::before { top: 0; }
.pricing-card__cta {
  height: 3rem;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  background: var(--blade-fg-on-dark);
  color: #0a0a0a;
  border-radius: 0.5rem;
}
.pricing-card__cta:hover { background: var(--blade-fg-on-dark-2); }
.pricing__note {
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(10,10,10,0.7);
}
.pricing__note p { margin: 0; }
.pricing__note a { font-weight: 500; color: var(--blade-fg); text-decoration: none; }
.pricing__note a:hover { text-decoration: underline; }

/* ----- Testimonials ----- */
.testimonials { padding: 5rem 0; }
@media (min-width: 1024px) { .testimonials { padding: 9rem 0; } }
.testimonials__head { margin-bottom: 3rem; }
@media (min-width: 1024px) { .testimonials__head { margin-bottom: 5rem; } }
.testimonials__carousel { position: relative; }
.testimonials__viewport { overflow: hidden; }
.testimonials__track { display: flex; transition: transform 500ms ease; will-change: transform; }
.testimonials__slide { flex: 0 0 100%; min-width: 0; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .testimonials__slide { flex-direction: row; gap: 8rem; align-items: stretch; } }
.testimonials__media {
  position: relative;
  width: 100%;
  aspect-ratio: 564 / 480;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #e9e9e7;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .testimonials__media { width: 564px; aspect-ratio: 564 / 640; } }
.testimonials__thumb { width: 100%; height: 100%; object-fit: cover; }
.testimonials__play {
  width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
}
.testimonials__play-icon {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 200ms ease;
}
.testimonials__play:hover .testimonials__play-icon { transform: scale(1.06); }
.testimonials__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.testimonials__body { display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
@media (min-width: 1024px) { .testimonials__body { width: 680px; flex-shrink: 0; } }
.testimonials__quote {
  font-family: 'Noe Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 2.125rem;
  color: var(--blade-fg);
  text-transform: capitalize;
  margin: 0;
}
@media (min-width: 1024px) { .testimonials__quote { font-size: 2.5rem; line-height: 3rem; } }
.testimonials__attr { display: flex; flex-direction: column; font-size: 1rem; line-height: 26px; }
.testimonials__name { font-weight: 500; color: var(--blade-fg); }
.testimonials__firm { color: rgba(10,10,10,0.7); }
.testimonials__dots { display: flex; gap: 0.5rem; margin-top: 2.5rem; }
@media (min-width: 1024px) { .testimonials__dots { margin-top: 3.5rem; } }
.testimonials__dot {
  width: 28px; height: 3px; padding: 0; border: 0; cursor: pointer;
  background: rgba(10,10,10,0.15); border-radius: 2px;
  transition: background 200ms ease;
}
.testimonials__dot.is-active { background: var(--blade-fg); }

/* ----- Video Demo ----- */
.video-demo { padding: 5rem 0; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .video-demo { padding: 9rem 0; } }
/* Decorative dotted globe (Figma): right side, vertically centered, half-opacity,
   partly clipped off the right edge. Ported from VideoDemo.tsx. */
.video-demo__graphic {
  position: absolute;
  top: 50%; right: 0;
  transform: translate(33.333%, -50%);
  width: 600px;
  max-width: none;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (min-width: 1024px) { .video-demo__graphic { width: 1200px; } }
.video-demo .container { position: relative; z-index: 1; }
/* "See How it Works" centers heading + sub in a 448px column (VideoDemo.tsx),
   overriding the shared section-head's lg row layout. */
.video-demo .section-head { flex-direction: column; align-items: center; max-width: 448px; }
.video-demo .section-head__title { max-width: none; margin-bottom: 0; }
.video-demo .section-head__sub { width: auto; }
.video-demo__player {
  position: relative;
  max-width: 1139px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #000;
}
.video-demo__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #000 center / cover no-repeat;
  cursor: pointer;
}
.video-demo__poster::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.25); transition: background 200ms ease; }
.video-demo__poster:hover::after { background: rgba(0,0,0,0.1); }
.video-demo__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  transition: transform 200ms ease;
}
.video-demo__play::before {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #0a0a0a;
}
.video-demo__poster:hover .video-demo__play { transform: translate(-50%, -50%) scale(1.06); }
.video-demo__iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ----- CTA band ----- */
.cta { padding: 5rem 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { .cta { padding: 7rem 0; } }
@media (min-width: 1024px) { .cta { padding: 9rem 0; } }
.cta__graphic { position: absolute; pointer-events: none; opacity: 0.6; z-index: 0; }
.cta__graphic--1 { top: -10%; left: -8%; width: 38%; max-width: 460px; }
.cta__graphic--2 { bottom: -12%; right: -8%; width: 38%; max-width: 460px; }
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .cta__inner { gap: 2.5rem; } }
.cta__copy { display: flex; flex-direction: column; gap: 1.5rem; }
.cta__heading {
  font-family: 'Saans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
  color: var(--blade-fg-on-dark);
  margin: 0;
}
@media (min-width: 1024px) { .cta__heading { font-size: 56px; line-height: 62px; } }
.cta__body { font-size: 1.125rem; line-height: 26px; color: rgba(250,250,249,0.7); margin: 0; }
/* On the dark CTA surface, the filled button is light and the secondary is a
   blurred ghost outline (matches CTA.tsx). */
.cta__button { height: 52px; padding: 0 2rem; font-size: 1.125rem; border-radius: 0.5rem; }
.cta__button.btn--primary { background: var(--blade-fg-on-dark); color: #0a0a0a; border-color: var(--blade-fg-on-dark); }
.cta__button.btn--primary:hover { background: var(--blade-fg-on-dark-2); border-color: var(--blade-fg-on-dark-2); }
.cta__button.btn--secondary { background: rgba(255,255,255,0.1); color: var(--blade-fg-on-dark); border-color: var(--blade-fg-on-dark); backdrop-filter: blur(20px); }
.cta__button.btn--secondary:hover { background: rgba(255,255,255,0.2); }
/* Two-button row: primary + glass phone (matches CTA.tsx). */
.cta__actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .cta__actions { flex-direction: row; justify-content: center; } }
.cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 52px;
  padding: 0 1.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--blade-fg-on-dark);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--blade-fg-on-dark);
  border-radius: 0.5rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  text-decoration: none;
  transition: background-color 200ms ease;
}
.cta__phone:hover { background: rgba(255,255,255,0.2); }

/* ----- Text (long-form prose) ----- */
.text-section { padding: 1.5rem 0; }
@media (min-width: 1024px) { .text-section { padding: 2rem 0; } }
.text-section__inner { max-width: 768px; margin: 0 auto; }
.text-section__heading { font-family: 'Saans', system-ui, sans-serif; font-size: 2rem; font-weight: 500; margin: 0 0 1.5rem; }
.text-section__body { font-size: 1.125rem; line-height: 1.7; color: rgba(10,10,10,0.85); }
.text-section__body h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.text-section__body h3 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.text-section__body p { margin: 0 0 1.25rem; }
.text-section__body ul, .text-section__body ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.text-section__body li { margin-bottom: 0.5rem; list-style: disc; }

/* Text — centered variant (Demo Thank-You) */
.text-section--center { display: flex; align-items: center; justify-content: center; min-height: 60vh; }
.text-section--center .text-section__inner { text-align: center; }
.text-section--center .text-section__heading { font-size: 2.25rem; margin-bottom: 1rem; }
@media (min-width: 1024px) { .text-section--center .text-section__heading { font-size: 2.5rem; } }
.text-section--center .text-section__body { font-size: 1.125rem; color: rgba(10,10,10,0.6); }

/* Text — boxed dark legal page (Terms / Privacy), matches bladeplatforms.com */
.text-section--boxed { padding-top: 7rem; }
@media (min-width: 1024px) { .text-section--boxed { padding-top: 9rem; } }
.text-section--boxed .text-section__inner { max-width: 896px; }
.text-section--boxed .text-section__heading { font-family: 'Noe Display', Georgia, serif; font-weight: 400; font-size: 2.5rem; line-height: 1.1; color: var(--blade-fg-on-dark); margin: 0 0 0.5rem; }
@media (min-width: 1024px) { .text-section--boxed .text-section__heading { font-size: 3rem; } }
.text-section--boxed .text-section__body { background: #15161b; border-radius: 16px; padding: 2rem; margin-top: 2rem; color: rgba(250,250,249,0.7); }
@media (min-width: 1024px) { .text-section--boxed .text-section__body { padding: 3rem; } }
.text-section--boxed .text-section__body h2 { font-family: 'Saans', system-ui, sans-serif; font-weight: 700; color: var(--blade-fg-on-dark); }
.text-section--boxed .text-section__body h3 { font-family: 'Saans', system-ui, sans-serif; font-weight: 600; color: var(--blade-fg-on-dark); }
.text-section--boxed .text-section__body strong { color: var(--blade-fg-on-dark); }
.text-section--boxed .text-section__body a { color: var(--blade-fg-on-dark); }
.text-section__body a { text-decoration: underline; }

/* ----- FAQ ----- */
.faq { padding: 5rem 0; }
@media (min-width: 1024px) { .faq { padding: 9rem 0; } }
.faq__inner { max-width: 768px; margin: 0 auto; }
.faq__heading { text-align: center; margin: 0 0 2.5rem; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--blade-border); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: 'Saans', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__marker { position: relative; flex: none; width: 16px; height: 16px; }
.faq__marker::before, .faq__marker::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 2px; background: currentColor; transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}
.faq__marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__marker::after { transform: translate(-50%, -50%) rotate(0); }
.faq__answer { padding: 0 0 1.5rem; font-size: 1rem; line-height: 1.6; color: rgba(10,10,10,0.75); }
.faq__answer p { margin: 0 0 1rem; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ----- Contact form ----- */
.contact-form { padding: 5rem 0; }
@media (min-width: 1024px) { .contact-form { padding: 9rem 0; } }
.contact-form__inner { max-width: 720px; margin: 0 auto; }
.contact-form__heading { text-align: center; margin: 0 0 2.5rem; }
.contact-form__notice { text-align: center; color: var(--blade-muted-fg); }

/* ============================================================
   BLOG / ARCHIVE / SEARCH / SINGLE / 404
   ============================================================ */
.blog-index, .error-404 { padding: 6rem 0 5rem; }
@media (min-width: 1024px) { .blog-index, .error-404 { padding: 8rem 0 6rem; } }
.blog-index__head { margin-bottom: 3rem; }
@media (min-width: 1024px) { .blog-index__head { margin-bottom: 4rem; } }
.blog-index__head .section-head__title { text-align: left; }
.blog-index__head .section-head__sub { margin-top: 1rem; width: auto; max-width: 42rem; }
.blog-index__empty { color: rgba(10,10,10,0.6); font-size: 1.0625rem; }
.blog-index__searchform { margin-top: 1.5rem; max-width: 28rem; }

/* Post grid + cards */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
/* Blog index: 2-column grid with bladeplatforms.com's wide row gap */
@media (min-width: 768px) { .post-grid--blog { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-grid--blog { grid-template-columns: repeat(2, 1fr); column-gap: 1rem; row-gap: 5rem; } }

/* Post card — Blade News & Press card (Figma 149:3371 / 153:4207): featured image
   (radius 4) + bordered category chip + h5 title + excerpt preview + date (m.d.Y).
   Used by the category archive, blog index, search. (Excerpt added per Vitaliy —
   the Figma card has chip+title+date only.) */
.post-card { display: flex; flex-direction: column; gap: 24px; color: inherit; text-decoration: none; }
.post-card__media { position: relative; aspect-ratio: 573 / 420; overflow: hidden; border-radius: 4px; background: var(--blade-gray-3, #d9d9d9); }
.post-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.post-card:hover .post-card__media img { transform: scale(1.02); }
.post-card__media--placeholder { background: var(--blade-gray-3, #d9d9d9); }
.post-card__body { display: flex; flex-direction: column; gap: 24px; }
.post-card__chip { align-self: flex-start; display: inline-flex; align-items: center; padding: 8px 12px; border: 1px solid rgba(0,0,0,0.5); border-radius: 4px; font-family: var(--blade-font); font-weight: 600; font-size: 12px; line-height: 12px; text-transform: uppercase; letter-spacing: 0.02em; color: #000; }
.post-card__text { display: flex; flex-direction: column; gap: 16px; }
.post-card__title { font-family: var(--blade-font); font-weight: 600; font-size: 24px; line-height: 28px; letter-spacing: -0.0156em; color: #000; margin: 0; transition: color 200ms ease; }
.post-card:hover .post-card__title { color: rgba(0,0,0,0.65); }
.post-card__excerpt { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: rgba(0,0,0,0.6); margin: 0; }
.post-card__date { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: rgba(0,0,0,0.5); }
.post-card--featured .post-card__media { aspect-ratio: 912 / 540; }

/* ----- Blog archive (category/tag) — Figma 149:3371 "News & Press" -----
   Header (h1 + intro), optional taxonomy tabs, 2-col card grid, prev/next pager,
   then the reused cta_form section + footer. */
.blog-archive__head { display: flex; flex-direction: column; gap: 16px; padding-top: 40px; }
.blog-archive__title { font-family: var(--blade-font); font-weight: 600; font-size: 48px; line-height: 1; letter-spacing: -0.04em; color: #000; margin: 0; }
.blog-archive__intro { font-family: var(--blade-font); font-weight: 400; font-size: 18px; line-height: 26px; color: rgba(0,0,0,0.5); margin: 0; max-width: 456px; }
.blog-archive__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.blog-archive__tab { display: inline-flex; align-items: center; height: 48px; padding: 0 24px; border-radius: 4px; background: var(--blade-gray-1); color: #000; font-family: var(--blade-font); font-weight: 600; font-size: 14px; line-height: 24px; text-transform: uppercase; text-decoration: none; }
.blog-archive__tab.is-active { background: #000; color: #fff; }
.blog-archive__grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
@media (min-width: 768px) { .blog-archive__grid { grid-template-columns: 1fr 1fr; column-gap: 24px; } }
@media (min-width: 1024px) {
  /* main already clears the 68px fixed nav; add the design's ~180px gap to the
     header so the h1 lands at Figma y248. */
  .blog-archive__head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; padding-top: 180px; }
  .blog-archive__title { font-size: 100px; max-width: 804px; }
  .blog-archive__intro { margin-bottom: 6px; }
  .blog-archive__tabs { margin-top: 64px; }
  .blog-archive__grid { grid-template-columns: 41.163% 41.163%; justify-content: space-between; column-gap: 0; row-gap: 140px; margin-top: 64px; }  /* 573 of 1392, space-between */
}
.blog-archive__pager { display: flex; align-items: center; justify-content: space-between; margin-top: 64px; }
@media (min-width: 1024px) { .blog-archive__pager { margin-top: 140px; } }
.blog-archive__pager-arrow a, .blog-archive__pager-arrow .is-disabled { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); color: #808080; text-decoration: none; }
.blog-archive__pager-arrow .is-disabled { opacity: 0.4; }
.blog-archive__pager-count { font-family: var(--blade-font); font-weight: 500; font-size: 14px; color: rgba(0,0,0,0.6); }
.blog-archive__empty { color: rgba(0,0,0,0.6); font-size: 17px; margin-top: 48px; }

/* Blog index hero (featured + sidebar) + section heading */
.blog-hero { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .blog-hero { grid-template-columns: 912fr 448fr; gap: 4rem; align-items: start; } }
.blog-divider { height: 1px; background: rgba(10,10,10,0.1); margin-top: 4rem; }
@media (min-width: 1024px) { .blog-divider { margin-top: 5rem; } }
.blog-heading { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 40px; line-height: 48px; letter-spacing: -0.0179em; text-transform: capitalize; color: #0a0a0a; margin: 5rem 0 2.5rem; }
@media (min-width: 1024px) { .blog-heading { font-size: 56px; line-height: 62px; margin: 7rem 0 4rem; } }

/* Blog subscribe block (dark, graphic-flanked) */
.blog-subscribe { margin: 5rem 0; }
@media (min-width: 1024px) { .blog-subscribe { margin: 6rem 0; } }
.blog-subscribe__inner { position: relative; overflow: hidden; background: #1a1b22; border-radius: 2px; padding: 4rem 1.25rem; }
@media (min-width: 1024px) { .blog-subscribe__inner { padding: 7rem 2rem; } }
.blog-subscribe__graphic { position: absolute; width: 400px; max-width: 60%; opacity: 0.6; pointer-events: none; user-select: none; }
.blog-subscribe__graphic--tl { top: -50px; left: -100px; }
.blog-subscribe__graphic--br { bottom: -50px; right: -100px; }
.blog-subscribe__content { position: relative; max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.5rem; }
.blog-subscribe__head { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-subscribe__heading { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 32px; line-height: 36px; letter-spacing: -0.0179em; text-transform: capitalize; color: #fff; margin: 0; }
@media (min-width: 1024px) { .blog-subscribe__heading { font-size: 56px; line-height: 62px; } }
.blog-subscribe__body { font-size: 1.125rem; line-height: 26px; color: rgba(255,255,255,0.7); margin: 0; }
.blog-subscribe__cta { display: inline-flex; align-items: center; justify-content: center; height: 52px; padding: 0 2rem; background: #fff; color: #0a0a0a; font-weight: 500; border-radius: 4px; text-decoration: none; transition: background 0.15s; }
.blog-subscribe__cta:hover { background: rgba(255,255,255,0.9); }
.blog-subscribe__form { width: 100%; max-width: 594px; }
.blog-subscribe__form .ff-el-form-control { height: 52px; padding: 0 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; color: #fff; }
.blog-subscribe__form .ff-el-form-control::placeholder { color: rgba(255,255,255,0.5); }
.blog-subscribe__form button.ff-btn.ff-btn-submit { background-color: #fff !important; color: #0a0a0a !important; border: none !important; height: 52px; padding: 0 2rem; border-radius: 4px; font-weight: 500; }
/* bladeplatforms.com shows no label and an inline email+button row on desktop. FF's own
   CSS loads after the theme at equal specificity, so these need !important. */
.blog-subscribe__form .ff-el-input--label { display: none !important; }
.blog-subscribe__form .ff-el-group { margin-bottom: 0 !important; }
.blog-subscribe__form .ff-el-is-error .text-danger, .blog-subscribe__form .error { color: #fca5a5; }
@media (min-width: 640px) {
  .blog-subscribe__form .frm-fluent-form { display: flex !important; flex-wrap: wrap; gap: 0.75rem; align-items: stretch; justify-content: center; }
  .blog-subscribe__form .frm-fluent-form .ff-el-group { flex: 1 1 320px; }
  .blog-subscribe__form .ff_submit_btn_wrapper { flex: 0 0 auto; }
}

/* Pagination — circular pills (bladeplatforms.com blog) */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: #f3f3f3; color: #1a1b1d; font-size: 0.875rem; font-weight: 500; border: none;
}
.pagination .page-numbers.current { background: #0a0a0a; color: #fff; }
.pagination a.page-numbers:hover { background: #e8e8e8; }

/* Single post */
/* Single post (bladeplatforms.com BlogPost) */
.single-post { padding: 0; }

/* Dark image hero */
.single-hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: #0a0a0a; }
@media (min-width: 1024px) { .single-hero { min-height: 800px; } }
.single-hero__bg { position: absolute; inset: 0; }
.single-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.single-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3)); }
.single-hero__inner { position: relative; z-index: 2; width: 100%; padding-top: 7rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .single-hero__inner { padding-top: 9rem; padding-bottom: 8rem; } }
.single-hero__content { max-width: 680px; display: flex; flex-direction: column; gap: 1.5rem; }
.single-hero__eyebrow { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(250,250,249,0.7); margin: 0; }
@media (min-width: 1024px) { .single-hero__eyebrow { font-size: 0.875rem; } }
.single-hero__title { font-family: 'Noe Display', Georgia, serif; font-weight: 400; font-size: 40px; line-height: 44px; text-transform: capitalize; color: var(--blade-fg-on-dark); margin: 0; }
@media (min-width: 1024px) { .single-hero__title { font-size: 68px; line-height: 72px; } }
.single-hero__excerpt { font-size: 1.125rem; line-height: 1.75rem; color: rgba(250,250,249,0.7); margin: 0; }
.single-hero__meta { display: flex; align-items: center; gap: 0.625rem; font-size: 1rem; color: rgba(250,250,249,0.7); }
.single-hero__dot { width: 4px; height: 4px; border-radius: 9999px; background: rgba(250,250,249,0.7); flex: none; }
.single-hero .hero__logos { z-index: 2; }

/* Wide featured image below the hero */
.single-feature { padding: 5rem 1.25rem 0; }
@media (min-width: 1024px) { .single-feature { padding: 7rem 2rem 0; } }
.single-feature__media { max-width: 1176px; margin: 0 auto; aspect-ratio: 912 / 520; overflow: hidden; border-radius: 2px; background: #1a1b22; }
.single-feature__media img { width: 100%; height: 100%; object-fit: cover; }

/* Prose body */
.single-body { padding: 4rem 1.25rem; }
@media (min-width: 1024px) { .single-body { padding: 5rem 2rem; } }
.single-body__inner { max-width: 680px; margin: 0 auto; }

/* Testimonial pull-quote */
.single-quote { padding: 0 1.25rem 4rem; }
@media (min-width: 1024px) { .single-quote { padding: 0 2rem 5rem; } }
.single-quote__inner { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.single-quote__text { font-family: 'Noe Display', Georgia, serif; font-weight: 400; font-size: 28px; line-height: 34px; text-transform: capitalize; color: #0a0a0a; margin: 0; }
@media (min-width: 1024px) { .single-quote__text { font-size: 40px; line-height: 48px; } }
.single-quote__cite { display: flex; flex-direction: column; gap: 0.25rem; font-size: 1rem; line-height: 26px; }
.single-quote__name { font-weight: 500; color: #0a0a0a; }
.single-quote__role { color: rgba(10,10,10,0.7); }

/* Next Articles (related posts) */
.single-related { background: #f3f3f3; padding: 5rem 1.25rem; }
@media (min-width: 1024px) { .single-related { padding: 7rem 2rem; } }
.single-related__inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .single-related__inner { grid-template-columns: 332px 1fr; gap: 4rem; } }
.single-related__heading { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 32px; line-height: 36px; letter-spacing: -0.0179em; text-transform: capitalize; color: #0a0a0a; margin: 0; }
@media (min-width: 1024px) { .single-related__heading { font-size: 56px; line-height: 62px; } }
.single-related__list { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .single-related__list { gap: 3rem; } }
.single-related__card { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; color: inherit; text-decoration: none; }
@media (min-width: 1024px) { .single-related__card { grid-template-columns: 332px 1fr; } }
.single-related__media { position: relative; aspect-ratio: 332 / 320; overflow: hidden; border-radius: 2px; background: #1a1b22; }
.single-related__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.single-related__card:hover .single-related__media img { transform: scale(1.02); }
.single-related__media--placeholder { background: linear-gradient(135deg, #2b2d36, #1a1b22); }
.single-related__text { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.5rem; }
.single-related__title { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 1.125rem; line-height: 1.5rem; letter-spacing: -0.0208em; text-transform: capitalize; color: #0a0a0a; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color 200ms ease; }
@media (min-width: 1024px) { .single-related__title { font-size: 1.25rem; line-height: 1.75rem; } }
.single-related__card:hover .single-related__title { color: rgba(10,10,10,0.7); }
.single-related__meta { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; color: rgba(10,10,10,0.7); }
.single-related__dot { width: 4px; height: 4px; border-radius: 9999px; background: rgba(10,10,10,0.7); flex: none; }

/* Article prose (mirrors the archived .prose-custom scale) */
.prose-custom { font-size: 1.125rem; line-height: 1.75; color: rgba(10,10,10,0.82); }
.prose-custom > * + * { margin-top: 1.25rem; }
.prose-custom h2 { font-family: 'Saans', system-ui, sans-serif; font-size: 1.75rem; line-height: 1.2; font-weight: 500; margin-top: 2.5rem; }
.prose-custom h3 { font-family: 'Saans', system-ui, sans-serif; font-size: 1.375rem; line-height: 1.25; font-weight: 500; margin-top: 2rem; }
.prose-custom a { text-decoration: underline; }
.prose-custom ul, .prose-custom ol { padding-left: 1.5rem; }
.prose-custom li { margin-top: 0.5rem; list-style: disc; }
.prose-custom ol li { list-style: decimal; }
.prose-custom img { border-radius: 0.375rem; height: auto; }
.prose-custom blockquote { border-left: 3px solid var(--blade-border); padding-left: 1.25rem; color: rgba(10,10,10,0.65); font-style: italic; }

/* ----- Single post — Blade "News & Press (Detailed)" (Figma 153:4248) -----
   Supersedes the atty single-* styles above (single.php no longer emits them).
   Centered header (breadcrumb + H1 + date) → wide featured image → 780px prose
   body → Share row → related-posts grid (#F5F5F5, butts the footer).
   Body widened 690→780 (marketing 2026-06-23: old posts had a wider measure). */
.single-post { padding: 0; }
.single-post__head { max-width: 924px; margin: 0 auto; padding: 40px var(--blade-container-pad) 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.single-post__crumbs { display: flex; align-items: center; gap: 8px; margin: 0; font-family: var(--blade-font); font-size: 12px; font-weight: 600; line-height: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: #000; }
.single-post__crumb-sep { color: var(--blade-blue); }
.single-post__crumb.is-current { opacity: 0.5; }
.single-post__title { font-family: var(--blade-font); font-weight: 600; font-size: 36px; line-height: 1.06; letter-spacing: -0.0313em; color: #000; margin: 0; }
.single-post__date { font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 24px; color: rgba(0,0,0,0.5); margin: 0; }
.single-post__feature { max-width: 1158px; margin: 32px auto 0; padding: 0 var(--blade-container-pad); }
.single-post__feature img { display: block; width: 100%; aspect-ratio: 1158 / 680; object-fit: cover; border-radius: 4px; }
.single-post__body { max-width: 780px; margin: 40px auto 0; padding: 0 var(--blade-container-pad); }
.single-post__prose { font-family: var(--blade-font); font-size: 16px; line-height: 26px; color: rgba(0,0,0,0.82); }
.single-post__prose > * + * { margin-top: 24px; }
.single-post__prose p { margin: 0; }
.single-post__prose h2 { font-weight: 600; font-size: 28px; line-height: 32px; letter-spacing: -0.02em; color: #000; margin-top: 48px; }
.single-post__prose h3 { font-weight: 600; font-size: 22px; line-height: 28px; color: #000; margin-top: 40px; }
.single-post__prose h4 { font-weight: 600; font-size: 18px; line-height: 26px; color: #000; margin-top: 32px; }
.single-post__prose a { color: var(--blade-blue); text-decoration: underline; }
.single-post__prose ul, .single-post__prose ol { padding-left: 1.5rem; margin: 24px 0; }
.single-post__prose li { margin-top: 8px; }
.single-post__prose ul li { list-style: disc; }
.single-post__prose ol li { list-style: decimal; }
.single-post__prose img { max-width: 100%; height: auto; border-radius: 4px; }
.single-post__prose blockquote { margin: 32px 0; font-weight: 600; font-size: 28px; line-height: 36px; letter-spacing: -0.02em; color: #000; }
.single-post__prose strong, .single-post__prose b { font-weight: 600; }
/* Rich-text elements WP can emit that were previously unstyled (browser-default,
   cramped). Marketing 2026-06-23: "blog posts not properly formatted." Shared with
   .text-section__body (restored long-form copy) so posts + pages format identically. */
.single-post__prose li > ul, .single-post__prose li > ol,
.text-section__body li > ul, .text-section__body li > ol { margin: 8px 0 0; }
.single-post__prose figure, .text-section__body figure { margin: 32px 0; }
.single-post__prose figure img, .text-section__body figure img { width: 100%; height: auto; border-radius: 4px; }
.single-post__prose figcaption, .text-section__body figcaption { margin-top: 8px; font-size: 14px; line-height: 20px; color: rgba(0,0,0,0.5); text-align: center; }
.single-post__prose hr, .text-section__body hr { border: 0; border-top: 1px solid rgba(0,0,0,0.1); margin: 40px 0; }
.single-post__prose table, .text-section__body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; line-height: 22px; }
.single-post__prose th, .single-post__prose td,
.text-section__body th, .text-section__body td { border: 1px solid rgba(0,0,0,0.12); padding: 10px 14px; text-align: left; vertical-align: top; }
.single-post__prose thead th, .text-section__body thead th { background: #f5f5f5; font-weight: 600; }
.single-post__prose code, .text-section__body code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em; background: rgba(0,0,0,0.05); padding: 2px 6px; border-radius: 3px; }
.single-post__prose pre, .text-section__body pre { background: #f5f5f5; border-radius: 4px; padding: 16px 20px; overflow-x: auto; margin: 24px 0; }
.single-post__prose pre code, .text-section__body pre code { background: none; padding: 0; }
.single-post__share { display: flex; align-items: center; gap: 24px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.1); }
.single-post__share-label { font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px; text-transform: uppercase; color: #000; }
.single-post__share-links { display: flex; gap: 24px; }
.single-post__share-links a { font-family: var(--blade-font); font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.6); text-decoration: none; }
.single-post__share-links a:hover { color: #000; }
/* Tags (restored per audit; styled as the design's bordered chip) */
.single-post__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.single-post__tag { display: inline-flex; align-items: center; padding: 8px 12px; border: 1px solid rgba(0,0,0,0.5); border-radius: 4px; font-family: var(--blade-font); font-weight: 600; font-size: 12px; line-height: 12px; text-transform: uppercase; letter-spacing: 0.02em; color: #000; text-decoration: none; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.single-post__tag:hover { border-color: #000; background: #000; color: #fff; }
/* Previous/next article (restored per audit; Blade typography, Share-row rule) */
.single-post__nav { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.1); }
.single-post__nav-link { display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: #000; }
.single-post__nav-dir { font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px; text-transform: uppercase; letter-spacing: 0.02em; color: rgba(0,0,0,0.5); }
.single-post__nav-title { font-family: var(--blade-font); font-size: 18px; font-weight: 600; line-height: 24px; color: #000; }
.single-post__nav-link:hover .single-post__nav-title { color: var(--blade-blue); }
.single-post__related { background: var(--blade-gray-1); margin-top: 80px; padding: 64px 0; }
.single-post__related-eyebrow { font-family: var(--blade-font); font-size: 14px; font-weight: 600; line-height: 20px; text-transform: uppercase; color: rgba(0,0,0,0.5); margin: 0 0 32px; }
.single-post__related-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .single-post__related-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1024px) {
  .single-post__head { padding-top: 140px; }              /* nav → header ≈ 140 (Figma header @ y208) */
  .single-post__title { font-size: 64px; line-height: 64px; }   /* Figma h2 64/64 centered */
  .single-post__feature { margin-top: 64px; }
  .single-post__body { margin-top: 64px; }
  .single-post__nav { grid-template-columns: 1fr 1fr; gap: 40px; }
  .single-post__nav-link--next { text-align: right; align-items: flex-end; }
  .single-post__related { margin-top: 140px; padding: 80px 0; }
}

/* Search form */
.search-form { display: flex; gap: 0.5rem; }
.search-form__field {
  flex: 1; height: 2.75rem; padding: 0 0.875rem;
  border: 1px solid var(--blade-border); border-radius: 0.375rem;
  font-family: inherit; font-size: 1rem; background: #fff; color: var(--blade-fg);
}
.search-form__field:focus-visible { outline: 2px solid var(--blade-primary); outline-offset: 1px; }
.search-form__submit { height: 2.75rem; }

/* 404 */
.error-404__inner { max-width: 36rem; margin: 0 auto; text-align: center; }
.error-404__code { font-family: 'Noe Display', Georgia, serif; font-size: 5rem; line-height: 1; color: var(--blade-border); margin: 0; }
.error-404__title { font-family: 'Saans', system-ui, sans-serif; font-size: 1.75rem; font-weight: 500; margin: 0.5rem 0 0.75rem; }
.error-404__text { color: rgba(10,10,10,0.7); margin: 0 0 1.5rem; }
.error-404__search { max-width: 28rem; margin: 0 auto 1.5rem; }
.error-404__links { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ----- Book a Demo (minimal Cal.com page — matches bladeplatforms.com BookDemo.tsx) ----- */
body.book-demo-page { background: #fff; }
.book-demo { min-height: 100vh; background: #fff; display: flex; flex-direction: column; }
.book-demo__bar { padding: 1rem 1.25rem; }
@media (min-width: 640px) { .book-demo__bar { padding: 1.5rem; } }
.book-demo__logo { display: inline-block; }
.book-demo__logo img { height: 22px; width: auto; display: block; }
.book-demo__cal { flex: 1; width: 100%; min-height: calc(100vh - 80px); overflow: auto; padding: 0 0.5rem 1rem; }
@media (min-width: 640px) { .book-demo__cal { padding: 0 1rem 1rem; } }

/* ===== About / inner-page sections (dark surface) ===== */
.section--page-dark { background: #0a0a0a; color: var(--blade-fg-on-dark); }
.page-hero__eyebrow, .split-content__eyebrow, .logo-grid__eyebrow {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(250,250,249,0.5); margin: 0 0 1rem;
}
@media (min-width: 1024px) { .page-hero__eyebrow, .split-content__eyebrow, .logo-grid__eyebrow { font-size: 0.875rem; } }

/* Page hero */
.page-hero { padding: 8rem 0 4rem; }
@media (min-width: 1024px) { .page-hero { padding: 13rem 0 6rem; } .page-hero__eyebrow { margin-bottom: 2.75rem; } }
.page-hero__heading {
  font-family: 'Noe Display', Georgia, serif; font-weight: 400;
  font-size: 48px; line-height: 52px; color: var(--blade-fg-on-dark); max-width: 800px; margin: 0;
}
@media (min-width: 1024px) { .page-hero__heading { font-size: 100px; line-height: 120px; } }

/* Video feature */
.media-video { padding: 0; }
.media-video__play {
  position: relative; display: block; width: 100%; height: 240px;
  border: 0; padding: 0; cursor: pointer; border-radius: 2px; overflow: hidden;
  background-size: cover; background-position: center;
}
@media (min-width: 768px) { .media-video__play { height: 480px; } }
@media (min-width: 1024px) { .media-video__play { height: 720px; } }
.media-video__play::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.2); transition: background 200ms ease; }
.media-video__play:hover::before { background: rgba(0,0,0,0.3); }
.media-video__icon {
  position: absolute; inset: 0; margin: auto; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.95); border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); color: #000; transition: transform 200ms ease;
}
@media (min-width: 1024px) { .media-video__icon { width: 112px; height: 112px; } }
.media-video__play:hover .media-video__icon { transform: scale(1.05); }
.media-video__icon svg { width: 32px; height: 32px; margin-left: 4px; }
@media (min-width: 1024px) { .media-video__icon svg { width: 48px; height: 48px; } }

/* Split content */
.split-content { padding: 5rem 0; }
@media (min-width: 1024px) { .split-content { padding: 9rem 0; } }
.split-content__inner { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .split-content__inner { flex-direction: row; gap: 4rem; align-items: flex-start; } }
.split-content__left { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .split-content__left { width: 564px; flex-shrink: 0; gap: 2.75rem; } }
.split-content__heading {
  font-family: 'Saans', system-ui, sans-serif; font-weight: 500;
  font-size: 32px; line-height: 38px; letter-spacing: -0.0208em; text-transform: capitalize;
  color: var(--blade-fg-on-dark); margin: 0;
}
@media (min-width: 1024px) { .split-content__heading { font-size: 48px; line-height: 56px; } }
.split-content__body { display: flex; flex-direction: column; gap: 1rem; color: rgba(250,250,249,0.7); font-size: 1rem; line-height: 26px; }
@media (min-width: 1024px) { .split-content__body { font-size: 1.125rem; max-width: 448px; padding-top: 5rem; } }
.split-content__body p { margin: 0; }

/* Stats */
.stats { padding: 0 0 5rem; }
@media (min-width: 1024px) { .stats { padding: 0 0 9rem; } }
.stats__row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2rem 0; border-bottom: 1px solid rgba(250,250,249,0.1);
}
@media (min-width: 1024px) { .stats__row { padding: 2.5rem 0; } }
.stats__value { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 48px; line-height: 60px; color: var(--blade-fg-on-dark); }
@media (min-width: 1024px) { .stats__value { font-size: 72px; line-height: 70px; } }
.stats__label { font-size: 1rem; color: rgba(250,250,249,0.7); max-width: 280px; text-align: right; }
@media (min-width: 1024px) { .stats__label { max-width: 448px; } }

/* Logo grid */
.logo-grid { padding: 5rem 0; }
@media (min-width: 1024px) { .logo-grid { padding: 9rem 0; } }
.logo-grid__head { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .logo-grid__head { flex-direction: row; gap: 4rem; margin-bottom: 4rem; align-items: flex-start; } }
.logo-grid__head-left { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .logo-grid__head-left { width: 564px; flex-shrink: 0; } }
.logo-grid__heading {
  font-family: 'Saans', system-ui, sans-serif; font-weight: 500;
  font-size: 32px; line-height: 36px; letter-spacing: -0.0179em; text-transform: capitalize;
  color: var(--blade-fg-on-dark); margin: 0;
}
@media (min-width: 1024px) { .logo-grid__heading { font-size: 56px; line-height: 62px; } }
.logo-grid__body { font-size: 1.125rem; line-height: 26px; color: rgba(250,250,249,0.7); margin: 0; }
@media (min-width: 1024px) { .logo-grid__body { max-width: 448px; padding-top: 4rem; } }
.logo-grid__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .logo-grid__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logo-grid__grid { grid-template-columns: repeat(4, 1fr); } }
.logo-grid__cell {
  height: 100px; display: flex; align-items: center; justify-content: center; padding: 2rem;
  background: rgba(26,27,34,0.5); border: 1px solid rgba(147,154,169,0.3);
}
@media (min-width: 1024px) { .logo-grid__cell { height: 147px; } }
.logo-grid__cell img { max-height: 28px; width: auto; opacity: 0.8; }

/* Fullscreen YouTube modal (Video Feature) */
.yt-modal { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center; }
.yt-modal__close {
  position: absolute; top: 1.25rem; right: 1.25rem; width: 2.5rem; height: 2.5rem;
  background: none; border: 0; cursor: pointer; color: rgba(255,255,255,0.8); font-size: 2rem; line-height: 1;
}
.yt-modal__close:hover { color: #fff; }
.yt-modal__frame { width: 100%; height: 100%; max-width: 1100px; max-height: 620px; padding: 1rem; }
.yt-modal__frame iframe { width: 100%; height: 100%; border: 0; }

/* ===== Practice-area sections (dark) ===== */
.section--page-alt { background: var(--blade-section-dark); color: var(--blade-fg-on-dark); }

/* Practice hero */
.practice-hero { padding: 7rem 0 4rem; }
@media (min-width: 1024px) { .practice-hero { padding: 10rem 0 6rem; } }
.practice-hero__back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--blade-fg-on-dark-2); text-decoration: none; margin-bottom: 2rem; transition: color 200ms ease; }
.practice-hero__back:hover { color: var(--blade-fg-on-dark); }
.practice-hero__eyebrow { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--blade-fg-on-dark-2); margin: 0 0 1.5rem; }
.practice-hero__heading { font-family: 'Noe Display', Georgia, serif; font-weight: 400; font-size: 36px; line-height: 40px; color: var(--blade-fg-on-dark); max-width: 680px; margin: 0; }
@media (min-width: 1024px) { .practice-hero__heading { font-size: 64px; line-height: 68px; } }
.practice-hero__body { font-size: 1.125rem; line-height: 28px; color: rgba(250,250,249,0.7); max-width: 560px; margin: 1.5rem 0 0; }
@media (min-width: 1024px) { .practice-hero__body { font-size: 1.25rem; } }
.practice-hero__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .practice-hero__actions { flex-direction: row; } }
.practice-hero__cta { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 2rem; font-size: 1rem; font-weight: 500; border-radius: 0.375rem; text-decoration: none; transition: background-color 200ms ease; }
.practice-hero__cta--primary { background: var(--blade-fg-on-dark); color: #0a0a0a; border: 1px solid var(--blade-fg-on-dark); }
.practice-hero__cta--primary:hover { background: var(--blade-fg-on-dark-2); }
.practice-hero__cta--ghost { background: rgba(255,255,255,0.1); color: var(--blade-fg-on-dark); border: 1px solid var(--blade-fg-on-dark); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.practice-hero__cta--ghost:hover { background: rgba(255,255,255,0.2); }
.practice-hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
@media (min-width: 1024px) { .practice-hero__stats { grid-template-columns: repeat(4, 1fr); margin-top: 4rem; } }
.practice-hero__stat { display: flex; flex-direction: column; gap: 0.5rem; text-align: center; padding: 2rem 1rem; background: var(--blade-section-dark); border: 1px solid rgba(147,154,169,0.3); border-radius: 0.5rem; }
.practice-hero__stat-value { font-family: 'Noe Display', Georgia, serif; font-weight: 400; font-size: 36px; line-height: 1; color: var(--blade-fg-on-dark); }
@media (min-width: 1024px) { .practice-hero__stat-value { font-size: 48px; } }
.practice-hero__stat-label { font-size: 1rem; font-weight: 500; color: var(--blade-fg-on-dark-2); }

/* Feature cards + Case types */
.feature-cards, .case-types { padding: 5rem 0; }
@media (min-width: 1024px) { .feature-cards, .case-types { padding: 8rem 0; } }
.feature-cards__head, .case-types__head { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; max-width: 680px; margin: 0 auto 3rem; }
@media (min-width: 1024px) { .feature-cards__head, .case-types__head { margin-bottom: 4rem; } }
.feature-cards__heading, .case-types__heading { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 32px; line-height: 36px; letter-spacing: -0.0208em; color: var(--blade-fg-on-dark); margin: 0; }
@media (min-width: 1024px) { .feature-cards__heading, .case-types__heading { font-size: 48px; line-height: 52px; } }
.feature-cards__sub, .case-types__sub { font-size: 1.125rem; line-height: 26px; color: rgba(250,250,249,0.7); margin: 0; }
.feature-cards__grid, .case-types__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 1024px) { .feature-cards__grid, .case-types__grid { grid-template-columns: repeat(2, 1fr); } }
.feature-cards__card { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; background: var(--blade-card-dark); border: 1px solid var(--blade-card-border); border-radius: 0.5rem; }
@media (min-width: 1024px) { .feature-cards__card { padding: 2.5rem; } }
.feature-cards__card-title { font-size: 1.25rem; font-weight: 500; letter-spacing: -0.0208em; color: var(--blade-fg-on-dark); margin: 0; }
@media (min-width: 1024px) { .feature-cards__card-title { font-size: 1.5rem; } }
.feature-cards__card-body { font-size: 1rem; line-height: 26px; color: rgba(250,250,249,0.7); margin: 0; }
.case-types__card { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; background: var(--blade-section-dark); border: 1px solid rgba(147,154,169,0.3); border-radius: 0.5rem; }
@media (min-width: 1024px) { .case-types__card { padding: 2.5rem; } }
.case-types__card-title { font-size: 1.25rem; font-weight: 500; letter-spacing: -0.0208em; color: var(--blade-fg-on-dark); margin: 0; }
.case-types__card-body { font-size: 1rem; line-height: 26px; color: rgba(250,250,249,0.7); margin: 0; }
.case-types__questions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.case-types__q-label { font-size: 0.875rem; font-weight: 500; color: var(--blade-fg-on-dark-2); }
.case-types__q { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 1rem; color: rgba(250,250,249,0.6); }
.case-types__check { color: var(--blade-fg-on-dark-2); margin-top: 0.125rem; flex-shrink: 0; }

/* ===== Integrations page sections ===== */
.page-hero__body { font-size: 1.125rem; line-height: 1.75rem; color: rgba(250,250,249,0.7); max-width: 480px; margin: 2rem 0 0; }

/* Stats — split layout (Integrations "Why Companies Choose…") */
.stats--split { padding: 5rem 0; }
@media (min-width: 1024px) { .stats--split { padding: 7rem 0; } }
.stats__inner { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .stats__inner { flex-direction: row; gap: 4rem; align-items: flex-start; } }
.stats__header { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .stats__header { width: 564px; flex-shrink: 0; } }
.stats__eyebrow { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(250,250,249,0.5); margin: 0; }
.stats__heading { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 32px; line-height: 36px; letter-spacing: -0.0179em; text-transform: capitalize; color: var(--blade-fg-on-dark); margin: 0; }
@media (min-width: 1024px) { .stats__heading { font-size: 56px; line-height: 62px; } }
.stats__col { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .stats__col { width: 448px; margin-left: auto; } }
.stats__col-row { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(250,250,249,0.1); }
.stats__col-row:first-child { border-top: 1px solid rgba(250,250,249,0.1); }
.stats__col-label { font-size: 1rem; color: rgba(250,250,249,0.7); }
.stats--split .stats__value { font-size: 48px; line-height: 56px; }
@media (min-width: 1024px) { .stats--split .stats__value { font-size: 56px; } }

/* Logo grid — light variant (Integrations "Our Integrations") */
.logo-grid--light .logo-grid__head { text-align: center; }
.logo-grid--light .logo-grid__head-left { width: auto; margin: 0 auto; }
.logo-grid--light .logo-grid__heading { font-size: 1rem; font-weight: 500; line-height: 1.5; letter-spacing: normal; text-transform: none; color: rgba(250,250,249,0.7); }
@media (min-width: 1024px) { .logo-grid--light .logo-grid__heading { font-size: 1rem; } }
@media (min-width: 768px) { .logo-grid--light .logo-grid__grid { grid-template-columns: repeat(4, 1fr); } }
.logo-grid--light .logo-grid__cell { background: #fff; border-color: rgba(147,154,169,0.3); }
.logo-grid--light .logo-grid__cell img { max-height: 40px; opacity: 1; }
@media (min-width: 1024px) { .logo-grid--light .logo-grid__cell img { max-height: 52px; } }

/* Feature rows (Integrations benefits) */
.feature-rows { padding: 5rem 0; }
@media (min-width: 1024px) { .feature-rows { padding: 7rem 0; } }
.feature-rows__head { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .feature-rows__head { flex-direction: row; gap: 4rem; margin-bottom: 6rem; align-items: flex-start; } }
.feature-rows__head-left { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .feature-rows__head-left { width: 564px; flex-shrink: 0; } }
.feature-rows__eyebrow { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(250,250,249,0.5); margin: 0; }
.feature-rows__heading { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 32px; line-height: 36px; letter-spacing: -0.0179em; text-transform: capitalize; color: var(--blade-fg-on-dark); margin: 0; }
@media (min-width: 1024px) { .feature-rows__heading { font-size: 56px; line-height: 62px; } }
.feature-rows__head-right { display: flex; flex-direction: column; gap: 1rem; color: rgba(250,250,249,0.7); font-size: 1rem; line-height: 1.75rem; }
@media (min-width: 1024px) { .feature-rows__head-right { max-width: 448px; padding-top: 4rem; font-size: 1.125rem; } }
.feature-rows__lead { color: var(--blade-fg-on-dark); font-weight: 500; font-size: 1.125rem; margin: 0; }
@media (min-width: 1024px) { .feature-rows__lead { font-size: 1.25rem; } }
.feature-rows__body { margin: 0; }
.feature-rows__list { display: flex; flex-direction: column; gap: 5rem; }
@media (min-width: 1024px) { .feature-rows__list { gap: 7rem; } }
.feature-rows__row { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .feature-rows__row { grid-template-columns: 1fr 1fr; gap: 4rem; } .feature-rows__row--reverse .feature-rows__media { order: 2; } }
.feature-rows__media { position: relative; width: 100%; aspect-ratio: 680 / 600; overflow: hidden; border-radius: 2px; background: #2b2d36; }
.feature-rows__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-rows__media::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.feature-rows__content { display: flex; flex-direction: column; gap: 2rem; }
.feature-rows__number { font-family: 'Noe Display', Georgia, serif; font-weight: 400; font-size: 80px; line-height: 0.85; color: rgba(250,250,249,0.25); margin: 0; }
@media (min-width: 1024px) { .feature-rows__number { font-size: 120px; } }
.feature-rows__text { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-rows__title { font-size: 1.5rem; font-weight: 500; letter-spacing: -0.0208em; text-transform: capitalize; color: var(--blade-fg-on-dark); margin: 0; }
@media (min-width: 1024px) { .feature-rows__title { font-size: 32px; line-height: 36px; } }
.feature-rows__subtitle { font-size: 1rem; line-height: 1.75rem; color: rgba(250,250,249,0.7); max-width: 448px; margin: 0; }
@media (min-width: 1024px) { .feature-rows__subtitle { font-size: 1.125rem; } }
.feature-rows__features { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; margin: 0; padding: 0; }
.feature-rows__features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: rgba(250,250,249,0.9); }
.feature-rows__check { color: var(--blade-fg-on-dark); margin-top: 0.125rem; flex-shrink: 0; }

/* ===== Contact page ===== */
/* Page Hero — light + centered variants */
.page-hero--light { background: var(--blade-section-light); color: var(--blade-fg); }
.page-hero--light .page-hero__eyebrow { color: #0a0a0a; text-transform: none; letter-spacing: normal; font-size: 0.875rem; margin: 0 0 0.5rem; }
@media (min-width: 1024px) { .page-hero--light .page-hero__eyebrow { font-size: 1rem; margin: 0 0 0.5rem; } }
.page-hero--light .page-hero__heading { color: #0a0a0a; }
.page-hero--light .page-hero__body { color: rgba(10,10,10,0.7); }
.page-hero--center .page-hero__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.page-hero--center .page-hero__heading { max-width: none; }
.page-hero--center .page-hero__body { max-width: none; margin: 1.5rem auto 0; }
@media (min-width: 1024px) { .page-hero--center .page-hero__body { font-size: 1.25rem; line-height: 2rem; } }

/* Contact Split — info panel + form */
.contact-split { padding: 0 0 4rem; }
@media (min-width: 1024px) { .contact-split { padding: 0 0 6rem; } }
.contact-split__card { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; }
@media (min-width: 1024px) { .contact-split__card { flex-direction: row; } }
.contact-split__info { position: relative; overflow: hidden; background: #edebeb; padding: 2rem; display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 640px) { .contact-split__info { padding: 3rem; } }
@media (min-width: 1024px) { .contact-split__info { width: 50%; padding: 5rem; gap: 3rem; min-height: 1090px; } }
.contact-split__info-head { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-split__info-heading { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 32px; line-height: 38px; letter-spacing: -0.02em; color: #020203; margin: 0; }
@media (min-width: 1024px) { .contact-split__info-heading { font-size: 48px; line-height: 56px; } }
.contact-split__info-body { font-size: 1rem; line-height: 1.5; color: rgba(2,2,3,0.8); max-width: 480px; margin: 0; }
@media (min-width: 1024px) { .contact-split__info-body { font-size: 1.125rem; line-height: 26px; } }
.contact-split__channels { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-split__channels { gap: 3rem; } }
.contact-split__channel { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-split__icon { width: 30px; height: 30px; flex-shrink: 0; margin-top: 0.25rem; }
.contact-split__channel-text { display: flex; flex-direction: column; gap: 0.625rem; min-width: 0; }
.contact-split__channel-label { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 20px; line-height: 26px; letter-spacing: -0.01em; color: #020203; margin: 0; }
@media (min-width: 1024px) { .contact-split__channel-label { font-size: 24px; line-height: 28px; } }
.contact-split__channel-text p { font-size: 1rem; line-height: 26px; color: rgba(2,2,3,0.8); margin: 0; }
@media (min-width: 1024px) { .contact-split__channel-text p { font-size: 1.125rem; } }
.contact-split__phone { font-weight: 500; color: rgba(2,2,3,0.8); text-decoration: none; }
.contact-split__phone:hover { color: #020203; }
.contact-split__decoration { pointer-events: none; position: absolute; bottom: -3rem; left: -3rem; width: 60%; max-width: 498px; aspect-ratio: 1 / 1; opacity: 0.5; user-select: none; }
@media (min-width: 1024px) { .contact-split__decoration { width: 72%; } }
.contact-split__form { background: #1a1b22; padding: 2rem; display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 640px) { .contact-split__form { padding: 3rem; } }
@media (min-width: 1024px) { .contact-split__form { width: 50%; padding: 72px; } }
.contact-split__form-head { display: flex; flex-direction: column; gap: 1rem; }
.contact-split__form-heading { font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 32px; line-height: 38px; letter-spacing: -0.02em; color: #fff; margin: 0; }
@media (min-width: 1024px) { .contact-split__form-heading { font-size: 48px; line-height: 56px; } }
.contact-split__form-body { font-size: 1rem; line-height: 1.5; color: rgba(255,255,255,0.8); margin: 0; }
@media (min-width: 1024px) { .contact-split__form-body { font-size: 1.125rem; line-height: 26px; } }
.contact-split__notice { color: rgba(255,255,255,0.7); }
/* Fluent Form styled for the dark panel */
.contact-split__form .ff-el-group { margin-bottom: 1.5rem; }
.contact-split__form .ff-el-input--label label,
.contact-split__form .ff-el-input--label { color: #fff; font-size: 1rem; font-weight: 400; margin-bottom: 0.625rem; }
.contact-split__form .ff-el-form-control {
  width: 100%; padding: 17px 16px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(179,179,179,0.4); border-radius: 4px;
  color: #fff; font-size: 16px; line-height: 26px;
}
.contact-split__form .ff-el-form-control::placeholder { color: rgba(255,255,255,0.6); }
.contact-split__form .ff-el-form-control:focus { outline: none; border-color: rgba(255,255,255,0.5); }
.contact-split__form textarea.ff-el-form-control { resize: vertical; min-height: 140px; }
.contact-split__form button.ff-btn.ff-btn-submit {
  width: 100%; padding: 14px 16px;
  background-color: #fafaf9 !important; background-image: none !important; color: #0a0a0a !important;
  border: none !important; border-radius: 4px; font-size: 16px; font-weight: 500; cursor: pointer; transition: background-color 0.15s;
}
@media (min-width: 1024px) { .contact-split__form button.ff-btn.ff-btn-submit { font-size: 18px; } }
.contact-split__form button.ff-btn.ff-btn-submit:hover { background-color: #fff !important; }
.contact-split__form .ff_submit_btn_wrapper { margin: 0; }
.contact-split__form .ff-el-form-check-label, .contact-split__form .ff-el-help-message, .contact-split__form .ff-el-form-check { color: rgba(255,255,255,0.8); }
.contact-split__form .ff-el-form-check { display: flex; align-items: flex-start; gap: 0.75rem; }

/* FAQ — 2-column split layout (Contact) */
.faq--split .faq__inner { max-width: 1376px; display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .faq--split .faq__inner { flex-direction: row; justify-content: space-between; gap: 4rem; } }
.faq--split .faq__head { display: flex; flex-direction: column; gap: 1rem; margin: 0; }
@media (min-width: 1024px) { .faq--split .faq__head { width: 564px; flex-shrink: 0; gap: 1.25rem; } }
.faq--split .faq__heading { text-align: left; font-family: 'Saans', system-ui, sans-serif; font-weight: 500; font-size: 32px; line-height: 36px; color: #000; margin: 0; max-width: none; }
@media (min-width: 1024px) { .faq--split .faq__heading { font-size: 56px; line-height: 62px; } }
.faq--split .faq__lead { font-size: 1rem; line-height: 26px; color: #000; margin: 0; }
@media (min-width: 1024px) { .faq--split .faq__lead { font-size: 1.25rem; line-height: 30px; } }
.faq--split .faq__list { gap: 0; }
@media (min-width: 1024px) { .faq--split .faq__list { width: 680px; flex-shrink: 0; } }
.faq--split .faq__item { border-bottom: none; }
.faq--split .faq__item + .faq__item { border-top: 1px solid rgba(179,179,179,0.3); margin-top: 1.5rem; }
.faq--split .faq__item + .faq__item .faq__question { padding-top: 1.625rem; }
@media (min-width: 1024px) { .faq--split .faq__question { font-size: 24px; line-height: 28px; } }

/* ----- FAQ page (Figma 153:4985) — centered H1 + "+" divider + gray-box accordion ----- */
.faq--page { padding: 0; background: #fff; }   /* white page so the #F5F5F5 item boxes contrast */
.faq--page .faq__inner { max-width: 1392px; margin: 0 auto; }
.faq__title { text-align: center; font-family: var(--blade-font); font-weight: 600; font-size: 56px; line-height: 58px; letter-spacing: -0.04em; color: #000; margin: 0; padding-top: 80px; }
.faq--page .blade-divider { margin-top: 64px; }
.faq--page .blade-divider::after { left: 50%; }
.faq__cols { margin-top: 48px; }
.faq--page .faq__list { max-width: 688px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq--page .faq__item { background: var(--blade-gray-1); border: 0; border-radius: 4px; padding: 20px; margin: 0; }
.faq--page .faq__item + .faq__item { border-top: 0; margin-top: 0; }
.faq--page .faq__item + .faq__item .faq__question { padding-top: 0; }
.faq--page .faq__question { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 0; font-family: var(--blade-font); font-weight: 600; font-size: 20px; line-height: 26px; color: #000; cursor: pointer; }
.faq--page .faq__answer { padding: 16px 0 0; font-family: var(--blade-font); font-weight: 400; font-size: 16px; line-height: 26px; color: rgba(0,0,0,0.5); }
.faq--page .faq__answer p { margin: 0 0 12px; }
.faq--page .faq__answer p:last-child { margin-bottom: 0; }
/* +/- circle marker (minus when open) */
.faq--page .faq__marker { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid #000; position: relative; margin-top: 1px; }
.faq--page .faq__marker::before, .faq--page .faq__marker::after { content: ""; position: absolute; left: 50%; top: 50%; background: #000; }
.faq--page .faq__marker::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq--page .faq__marker::after { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq--page .faq__item[open] .faq__marker::after { display: none; }
@media (min-width: 1024px) {
  .faq__title { font-size: 100px; line-height: 100px; padding-top: 140px; }   /* h1 @ ~y208 */
  .faq--page .blade-divider { margin-top: 140px; }   /* divider @ ~y419 */
  .faq__cols { margin-top: 148px; }                  /* accordion @ ~y567 */
  .faq--page .faq__question { font-size: 24px; line-height: 28px; }
}
