/* =========================================================================
   Alpha Fire Ltd — Marketing Website
   Direction: Modern construction-tech. Warm white base, Plus Jakarta Sans,
   layered cards with soft shadows, real photography, Lucide icons,
   gradient accents, fully responsive.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
  /* Canvas — cool neutral */
  --bg:           #f4f6f9;
  --bg-sub:       #edf0f4;
  --bg-raised:    #ffffff;
  --bg-alt:       #f0f3f7;

  /* Ink — modern warm charcoal */
  --ink:          #0e1217;
  --ink-900:      #12161c;
  --ink-800:      #181d25;
  --ink-700:      #20272f;
  --ink-600:      #2a313c;
  --ink-500:      #3a4150;

  /* Text */
  --text:         #0e1217;
  --text-body:    #3a414a;
  --text-muted:   #6b727c;
  --text-dim:     #8f94a0;

  /* Accent — the specified blue, used confidently */
  --accent:       #3b82b8;
  --accent-hot:   #4b9dd8;
  --accent-deep:  #2c5f8d;
  --accent-50:    #eef5fa;
  --accent-100:   #d9e9f4;
  --accent-200:   #b4d3e8;
  --accent-glow:  rgba(59, 130, 184, 0.24);
  --accent-soft:  rgba(59, 130, 184, 0.08);

  /* Warm accent for gradient meshes */
  --warm:         #e8cfa4;
  --warm-glow:    rgba(232, 207, 164, 0.3);

  /* Lines */
  --hairline:     rgba(14, 18, 23, 0.08);
  --hairline-soft:rgba(14, 18, 23, 0.04);
  --hairline-dark:rgba(251, 250, 247, 0.1);
  --border:       rgba(14, 18, 23, 0.1);

  /* Typography */
  --display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --container:        1440px;
  --container-narrow: 1200px;
  --container-tight:  920px;
  --side:             clamp(1.25rem, 4vw, 3rem);
  --nav-h:            72px;

  /* Radius — square edges */
  --radius-xs:   0;
  --radius-sm:   0;
  --radius:      0;
  --radius-lg:   0;
  --radius-xl:   0;
  --radius-full: 0;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:    200ms;
  --dur:         380ms;
  --dur-slow:    640ms;
  --dur-slower:  1000ms;

  /* Shadows — layered modern construction-tech */
  --shadow-xs: 0 1px 2px rgba(14, 18, 23, 0.04);
  --shadow-sm: 0 2px 6px -1px rgba(14, 18, 23, 0.06),
               0 1px 2px rgba(14, 18, 23, 0.04);
  --shadow:    0 8px 20px -6px rgba(14, 18, 23, 0.08),
               0 4px 8px -4px rgba(14, 18, 23, 0.04),
               0 1px 2px rgba(14, 18, 23, 0.03);
  --shadow-md: 0 16px 36px -10px rgba(14, 18, 23, 0.12),
               0 6px 16px -6px rgba(14, 18, 23, 0.06),
               0 1px 2px rgba(14, 18, 23, 0.04);
  --shadow-lg: 0 32px 72px -16px rgba(14, 18, 23, 0.18),
               0 12px 32px -12px rgba(14, 18, 23, 0.08),
               0 2px 6px rgba(14, 18, 23, 0.04);
  --shadow-xl: 0 48px 96px -20px rgba(14, 18, 23, 0.24),
               0 16px 40px -16px rgba(14, 18, 23, 0.1),
               0 2px 8px rgba(14, 18, 23, 0.04);
  --shadow-accent: 0 16px 40px -12px rgba(59, 130, 184, 0.28),
                   0 6px 16px -6px rgba(59, 130, 184, 0.16);
}

/* -------------------------------------------------------------------------
   2. Reset + base
   ------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.58;
  color: var(--text-body);
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(59,130,184,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'calt', 'ss01';
  font-synthesis: none;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--side);
  background: var(--ink);
  color: white;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* -------------------------------------------------------------------------
   3. Typography — Plus Jakarta Sans
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.display-1 {
  font-size: clamp(2.5rem, 6.5vw, 5.75rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.display-2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.display-3 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 0.5rem 0.875rem;
  background: var(--accent-50);
  border: 1px solid var(--accent-100);
  border-radius: var(--radius-full);
}
.kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.kicker--plain {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 400;
  max-width: 56ch;
}

.prose p {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.prose p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--side);
  position: relative;
}
.container--narrow { max-width: var(--container-narrow); }
.container--tight  { max-width: var(--container-tight); }

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
}
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--bg       { background: var(--bg); }
.section--sub      { background: var(--bg-sub); }
.section--alt      { background: var(--bg-alt); }
.section--ink      { background: var(--ink); color: #fff; }
.section--ink-warm { background: var(--ink-900); color: #fff; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 920px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 22ch;
}
.section--ink .section-head__title,
.section--ink-warm .section-head__title { color: #fff; }
.section-head--center .section-head__title { margin-inline: auto; }
.section-head__intro {
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text-body);
  max-width: 58ch;
  margin-top: 1rem;
}
.section--ink .section-head__intro,
.section--ink-warm .section-head__intro { color: rgba(255,255,255,0.7); }
.section-head--center .section-head__intro { margin-inline: auto; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   5. Buttons — modern rounded
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9375rem 1.5rem;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -12px rgba(59, 130, 184, 0.36),
              0 8px 20px -6px rgba(59, 130, 184, 0.2);
}

.btn--ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--ink:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn--white {
  background: white;
  color: var(--ink);
  border-color: white;
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.22);
}
.btn--ghost-light:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}

.btn--sm { padding: 0.625rem 1.125rem; font-size: 0.8125rem; }
.btn--lg { padding: 1.125rem 2rem; font-size: 0.9375rem; }

/* -------------------------------------------------------------------------
   6. Header — floating bar with dropdowns
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: clamp(0.875rem, 1.8vw, 1.5rem);
  left: clamp(0.875rem, 2vw, 1.5rem);
  right: clamp(0.875rem, 2vw, 1.5rem);
  z-index: 100;
}

.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.5rem 0.625rem 0.5rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-xs);
}
.site-header.is-scrolled .site-header__bar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.site-header__logo:hover { opacity: 0.8; }

.site-header__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.site-header__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), var(--shadow-sm);
}
.site-header__logo-text {
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.site-header__logo-sub {
  display: block;
  font-family: var(--mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}
@media (max-width: 720px) { .site-header__logo-sub { display: none; } }

.site-nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-nav { display: flex; align-items: stretch; }
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.875rem 1rem;
  transition: color var(--dur-fast) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.site-nav__link:hover,
.site-nav__item:hover .site-nav__link { color: var(--accent); }
.site-nav__link.is-active { color: var(--accent); }

.site-nav__chev {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}
.site-nav__item:hover .site-nav__chev { transform: rotate(-180deg); }

/* Dropdown panel */
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -0.5rem;
  min-width: 340px;
  background: white;
  border: 1px solid var(--border);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility var(--dur) var(--ease);
  z-index: 10;
}
.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav__dropdown--wide { min-width: 460px; }

.site-nav__dropdown-list { list-style: none; }
.site-nav__dropdown-link {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.875rem;
  padding: 0.75rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease);
  align-items: center;
}
.site-nav__dropdown-link:hover { background: var(--bg-sub); }
.site-nav__dropdown-link:hover .site-nav__dropdown-title { color: var(--accent); }

.site-nav__dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.site-nav__dropdown-icon svg { width: 18px; height: 18px; stroke-width: 1.75; }

.site-nav__dropdown-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease);
  display: block;
  margin-bottom: 2px;
}
.site-nav__dropdown-desc {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.site-header__cta {
  display: none;
}
@media (min-width: 1100px) {
  .site-header__cta { display: inline-flex; }
}

.site-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-full);
}
@media (min-width: 1024px) { .site-header__toggle { display: none; } }

.site-header__toggle-bars {
  position: relative;
  width: 18px;
  height: 10px;
}
.site-header__toggle-bars::before,
.site-header__toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--dur) var(--ease);
}
.site-header__toggle-bars::before { top: 0; }
.site-header__toggle-bars::after  { bottom: 0; }
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bars::before {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bars::after {
  bottom: 50%; transform: translateY(50%) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  color: var(--ink);
  z-index: 99;
  padding: 120px var(--side) 3rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__link {
  font-family: var(--display);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  transition: color var(--dur-fast) var(--ease), padding-left var(--dur) var(--ease);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.mobile-menu__link::before {
  content: attr(data-n);
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  font-weight: 500;
}
.mobile-menu__link:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu__footer a {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.mobile-menu__cta {
  margin-top: 1.5rem;
  align-self: flex-start;
}

body.menu-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   7. Hero — trade-specific, asymmetric, technical
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
  padding-top: calc(var(--nav-h) + 3rem);
}

.hero--home {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
}

.hero__header-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__spec-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__spec-label strong {
  color: var(--ink);
  font-weight: 600;
}
.hero__spec-label .sep {
  width: 24px;
  height: 1px;
  background: var(--hairline);
}
.hero__live {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.hero__live strong { color: var(--ink); font-weight: 600; }

/* MAIN HERO: asymmetric 7-col layout */
.hero__main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1100px) {
  .hero--home .hero__main {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
    align-items: stretch;
  }
}

.hero__content { position: relative; }

.hero__kicker-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.hero__kicker-row .num {
  color: var(--accent);
  font-weight: 600;
}
.hero__kicker-row .rule {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--hairline);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.75rem;
  max-width: 16ch;
}
.hero__title u {
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.hero__title u::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.12em;
  background: var(--accent);
}

.hero__description {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 52ch;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Trade-specific tech panel on the right */
.hero__tech {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__doc {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

/* Document header — looks like a real compliance document */
.hero__doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, var(--bg-sub) 0%, var(--bg-raised) 100%);
  border-bottom: 1px solid var(--hairline);
}
.hero__doc-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 600;
}
.hero__doc-title svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  stroke-width: 2;
}
.hero__doc-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero__doc-stamp::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #15803d;
}

.hero__doc-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.hero__doc-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__doc-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(14, 18, 23, 0.6) 100%);
}
.hero__doc-annotations {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: white;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.04em;
}
.hero__doc-annotations .ref {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero__doc-annotations .ref span {
  color: rgba(255,255,255,0.6);
}
.hero__doc-annotations .ref strong {
  font-weight: 600;
  font-size: 0.75rem;
}
.hero__doc-annotations .scale {
  text-align: right;
}

/* Technical spec rows */
.hero__specs {
  padding: 0;
  background: var(--bg-raised);
  display: grid;
}
.hero__spec-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid var(--hairline);
  align-items: center;
  font-size: 0.8125rem;
}
.hero__spec-row:first-child { border-top: none; }
.hero__spec-row-key {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.hero__spec-row-value {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  letter-spacing: -0.01em;
}
.hero__spec-row-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 600;
}
.hero__spec-row-status svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

/* Second card — stats strip */
.hero__stats-card {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__stats-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 20%, rgba(59,130,184,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.hero__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.hero__stat-value {
  font-family: var(--display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: white;
}
.hero__stat-value span { color: var(--accent-hot); }
.hero__stat-label {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Inner page hero */
.hero--inner {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--inner .hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}
.hero--inner .hero__description {
  max-width: 60ch;
  margin-bottom: 0;
}

.breadcrumb {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 2rem;
}
.breadcrumb a { transition: color var(--dur-fast) var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-dim); }

/* -------------------------------------------------------------------------
   8. Service cards — modern with icons
   ------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.875rem;
  position: relative;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--accent-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-100);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--accent-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all var(--dur) var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.service-card:hover .service-card__icon {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}
.service-card__icon svg { width: 24px; height: 24px; stroke-width: 1.75; }

.service-card__title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.service-card__description {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
}
.service-card__link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--dur) var(--ease);
  position: relative;
  z-index: 1;
}
.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}
.service-card:hover .service-card__link { gap: 0.75rem; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* Service detailed rows for services page */
.service-deep {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.service-deep:last-child { border-bottom: none; padding-bottom: 0; }
.service-deep:first-child { padding-top: 0; }
@media (min-width: 960px) {
  .service-deep { grid-template-columns: 0.4fr 1.6fr; gap: 5rem; }
}
.service-deep__meta { position: sticky; top: 120px; }
.service-deep__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--accent-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}
.service-deep__icon svg { width: 26px; height: 26px; stroke-width: 1.75; }
.service-deep__index {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: block;
}
.service-deep__title {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.service-deep__tagline {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 32ch;
}
.service-deep__body p {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}
.service-deep__body p:last-child { margin-bottom: 0; }
.service-deep__list {
  list-style: none;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: 1.125rem;
}
.service-deep__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
  align-items: start;
}
.service-deep__list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  stroke-width: 2;
  margin-top: 2px;
}

/* -------------------------------------------------------------------------
   9. Sector cards
   ------------------------------------------------------------------------- */
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .sectors-grid { grid-template-columns: repeat(3, 1fr); } }

.sector-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.sector-card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sector-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease);
}
.sector-card:hover .sector-card__image img { transform: scale(1.08); }
.sector-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(14,18,23,0.15) 0%, rgba(14,18,23,0.75) 62%, rgba(14,18,23,0.96) 100%);
}
.sector-card__inner {
  position: absolute;
  inset: 0;
  padding: 1.75rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sector-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sector-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.sector-card__icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.sector-card__index {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.sector-card__label {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hot);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.sector-card__title {
  font-family: var(--display);
  font-size: 1.625rem;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.03em;
}
.sector-card__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}
.sector-card__arrow {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  letter-spacing: -0.005em;
  font-weight: 600;
  color: white;
}
.sector-card__arrow svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}
.sector-card:hover .sector-card__arrow svg { transform: translateX(4px); }

/* Sector detail block (sectors page) */
.sector-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.sector-block:last-child { border-bottom: none; padding-bottom: 0; }
.sector-block:first-child { padding-top: 0; }
@media (min-width: 960px) {
  .sector-block { grid-template-columns: 1.1fr 1fr; gap: 5rem; }
  .sector-block--reverse .sector-block__image { order: 2; }
}
.sector-block__image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-sub);
  box-shadow: var(--shadow);
}
.sector-block__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sector-block__kicker {
  margin-bottom: 1.25rem;
}
.sector-block__title {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.sector-block__text p {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.sector-block__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.sector-block__stat-value {
  font-size: 1.625rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.sector-block__stat-value span { color: var(--accent); }
.sector-block__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* -------------------------------------------------------------------------
   10. Project cards
   ------------------------------------------------------------------------- */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px)  { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
.projects-grid--featured { gap: 1.75rem; }
@media (min-width: 900px) { .projects-grid--featured { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-align: left;
  transition: all var(--dur) var(--ease);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  width: 100%;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-100);
}
.project-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-sub);
}
.project-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease);
}
.project-card:hover .project-card__media img { transform: scale(1.06); }
.project-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 0.4375rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-full);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.project-card__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.project-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.project-card__value {
  color: var(--accent);
  font-weight: 700;
}
.project-card__title {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.project-card__description {
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  flex: 1;
}
.project-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--dur) var(--ease);
}
.project-card__cta svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.project-card:hover .project-card__cta { gap: 0.75rem; }
.project-card:hover .project-card__cta svg { transform: translateX(3px); }

/* Project filter */
.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  align-items: center;
}
.project-filter__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.75rem;
}
.project-filter__button {
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
}
.project-filter__button:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.project-filter__button.is-active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.modal.is-open { display: block; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 23, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.modal.is-open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: min(920px, calc(100% - 2rem));
  background: var(--bg-raised);
  overflow-y: auto;
  transform: translateX(32px);
  opacity: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur) var(--ease);
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal__close {
  position: sticky;
  top: 1.25rem;
  float: right;
  margin-right: 1.25rem;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: all var(--dur-fast) var(--ease);
}
.modal__close:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.modal__close::before, .modal__close::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: currentColor;
}
.modal__close::before { transform: rotate(45deg); }
.modal__close::after  { transform: rotate(-45deg); }

.modal__content {
  padding: 3rem 2.5rem 4rem;
}
@media (max-width: 720px) {
  .modal__content { padding: 2.5rem 1.25rem 3rem; }
}
.modal__eyebrow {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--accent-50);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.modal__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.modal__hero {
  aspect-ratio: 16 / 9;
  background: var(--bg-sub);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.modal__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__meta {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-sub);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
@media (min-width: 600px) { .modal__meta { grid-template-columns: repeat(2, 1fr); } }
.modal__meta-row {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.modal__meta-row:last-child { border-bottom: none; }
@media (min-width: 600px) {
  .modal__meta-row:nth-child(2n) { border-left: 1px solid var(--hairline); }
  .modal__meta-row:nth-last-child(-n+2) { border-bottom: none; }
}
.modal__meta-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.modal__meta-value {
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 600;
}
.modal__body p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.modal__services { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--hairline); }
.modal__services-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}
.modal__services-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.modal__service-tag {
  padding: 0.5rem 0.875rem;
  background: var(--accent-50);
  border: 1px solid var(--accent-100);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* -------------------------------------------------------------------------
   11. Feature split
   ------------------------------------------------------------------------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .feature-split { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
  .feature-split--reverse { grid-template-columns: 1.1fr 1fr; }
  .feature-split--reverse .feature-split__media { order: 2; }
}
.feature-split__media {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--bg-sub);
}
.feature-split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-split__kicker { margin-bottom: 1.5rem; }
.feature-split__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
  color: var(--ink);
  margin-bottom: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.feature-split__text p {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.feature-split__list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hairline);
}
.feature-split__list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  align-items: start;
}
.feature-split__list li svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-top: 2px;
  stroke-width: 2;
  padding: 3px;
  background: var(--accent-50);
  border-radius: var(--radius-xs);
  box-sizing: content-box;
}
.feature-split__list strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}
.feature-split__list span {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.55;
}

.section--ink .feature-split__title { color: #fff; }
.section--ink .feature-split__text p { color: rgba(255,255,255,0.7); }
.section--ink .feature-split__list { border-top-color: var(--hairline-dark); }
.section--ink .feature-split__list strong { color: #fff; }
.section--ink .feature-split__list span { color: rgba(255,255,255,0.7); }

/* -------------------------------------------------------------------------
   12. Process
   ------------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px)  { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(5, 1fr); } }
.process__step {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: all var(--dur) var(--ease);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.process__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-100);
}
.process__step-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.process__step-num::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
}
.process__title {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
  letter-spacing: -0.015em;
}
.process__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-body);
}

/* -------------------------------------------------------------------------
   13. Logo strip
   ------------------------------------------------------------------------- */
.logo-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-sub);
  overflow: hidden;
}
.logo-strip__label {
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2.25rem;
}
.logo-strip__track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.logo-strip:hover .logo-strip__track { animation-play-state: paused; }
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-strip__item {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}
.logo-strip__item:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------------------
   14. CTA banner — dark with gradient mesh
   ------------------------------------------------------------------------- */
.cta-banner {
  background: var(--ink);
  color: white;
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(59,130,184,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(30, 70, 106, 0.35) 0%, transparent 60%);
  z-index: 1;
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .cta-banner__inner { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}
.cta-banner__kicker {
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: white;
}
.cta-banner__kicker .dot { background: var(--accent); }
.cta-banner__title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.cta-banner__text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  max-width: 48ch;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 960px) {
  .cta-banner__actions { justify-self: end; flex-direction: column; align-items: flex-start; }
}

/* -------------------------------------------------------------------------
   15. Contact
   ------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
}
.contact-info__block {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-info__block:first-child { padding-top: 0; }
.contact-info__block:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.contact-info__label {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.contact-info__value {
  font-size: 1.0625rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.contact-info__value a { transition: color var(--dur-fast) var(--ease); }
.contact-info__value a:hover { color: var(--accent); }
.contact-info__sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.375rem;
  line-height: 1.45;
}

.contact-form {
  background: var(--bg-raised);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form__title {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--ink);
  margin-bottom: 0.625rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.contact-form__text {
  font-size: 0.9375rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.55;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid__full { grid-column: 1 / -1; }
}
.form-field { display: flex; flex-direction: column; }
.form-field__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-field__label span { color: var(--accent); margin-left: 0.1875rem; }
.form-field__input,
.form-field__textarea,
.form-field__select {
  padding: 0.875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: all var(--dur-fast) var(--ease);
  font-family: var(--body);
}
.form-field__input:focus,
.form-field__textarea:focus,
.form-field__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field__textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; }
.form-consent {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -------------------------------------------------------------------------
   16. Pull quote
   ------------------------------------------------------------------------- */
.pull-quote {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
.pull-quote__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
}
.section--ink .pull-quote__icon {
  background: rgba(59,130,184,0.15);
  color: var(--accent-hot);
}
.pull-quote__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.pull-quote__text {
  font-family: var(--display);
  font-size: clamp(1.375rem, 2.8vw, 2.125rem);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}
.section--ink .pull-quote__text { color: white; }
.pull-quote__attribution {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.section--ink .pull-quote__attribution { color: rgba(255,255,255,0.5); }
.pull-quote__attribution strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.section--ink .pull-quote__attribution strong { color: white; }

/* -------------------------------------------------------------------------
   17. Footer — FPL-style layout
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-sub);
  color: var(--text-body);
  padding-block: clamp(4rem, 8vw, 6rem) 2rem;
  position: relative;
  border-top: 1px solid var(--hairline);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 900px) {
  .site-footer__top {
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
  }
}

.site-footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.85;
}
.site-footer__logo-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.site-footer__logo-mark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.04em;
  box-shadow: var(--shadow-accent);
}
.site-footer__logo-text {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.site-footer__logo-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.005em;
}

.site-footer__company {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.site-footer__address {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  max-width: 42ch;
}

.site-footer__contact-label {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 0.625rem;
}
.site-footer__contact-row {
  font-size: 0.9375rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.site-footer__contact-row a {
  color: var(--text-body);
  transition: color var(--dur-fast) var(--ease);
}
.site-footer__contact-row a:hover { color: var(--accent); }
.site-footer__contact-row .sep {
  margin: 0 0.625rem;
  color: var(--text-dim);
}
.site-footer__aside {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
  line-height: 1.55;
  max-width: 44ch;
}
.site-footer__aside strong {
  color: var(--ink);
  font-weight: 600;
}

/* Right nav */
.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
@media (min-width: 900px) {
  .site-footer__nav { align-items: flex-end; }
}
.site-footer__nav a {
  font-family: var(--display);
  font-size: 1.125rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: color var(--dur-fast) var(--ease);
}
.site-footer__nav a:hover { color: var(--accent); }

.site-footer__rule {
  height: 1px;
  background: var(--hairline);
  margin-bottom: 1.5rem;
}
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
@media (min-width: 720px) {
  .site-footer__bottom { flex-direction: row; align-items: center; }
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer__legal a {
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.site-footer__legal a:hover { color: var(--ink); }

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

/* =========================================================================
   19. v2 — Condensed layout system (full-width, flat, bordered)
   Used across all pages for the refined design rhythm.
   ========================================================================= */
.v2-wrap { background: var(--bg); }
.v2-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 4vw, 4rem);
}

/* Hero */
.v2-hero {
  position: relative;
  padding: clamp(108px, 12vw, 136px) 0 clamp(40px, 5vw, 56px);
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, var(--accent-50) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 10% 90%, rgba(232, 207, 164, 0.22) 0%, transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.v2-hero--compact { padding: clamp(108px, 11vw, 128px) 0 clamp(32px, 4vw, 48px); }
.v2-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) { .v2-hero-grid { grid-template-columns: 1.15fr 1fr; gap: 3.5rem; } }
.v2-hero-grid--text { grid-template-columns: 1fr; max-width: 860px; text-align: left; }
@media (min-width: 960px) { .v2-hero-grid--text { grid-template-columns: 1fr; } }

.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.v2-eyebrow::before {
  content: '›';
  font-size: 1.1em;
  line-height: 1;
  color: var(--accent);
}
.v2-hero-title {
  font-family: var(--display);
  font-size: clamp(2.625rem, 5.4vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-weight: 800;
  max-width: 17ch;
}
.v2-hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, rgba(59, 130, 184, 0.22) 62%);
  padding: 0 2px;
}
.v2-hero-desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 56ch;
  margin-bottom: 1.75rem;
}
.v2-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.v2-hero-media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 10px 10px 0 0 var(--accent-50), 10px 10px 0 1px var(--border);
}
.v2-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust row */
.v2-trust {
  background: white;
  border-bottom: 1px solid var(--hairline);
  padding: 32px 0;
}
.v2-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) { .v2-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.v2-trust-item {
  text-align: center;
  padding: 8px 8px;
  border-right: 1px solid var(--hairline);
}
.v2-trust-item:last-child { border-right: none; }
@media (max-width: 720px) { .v2-trust-item:nth-child(2n) { border-right: none; } }
.v2-trust-num {
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 6px;
}
.v2-trust-num span { color: var(--accent-hot); }
.v2-trust-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Accreditation strip */
.v2-accred {
  background: var(--bg-sub);
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.v2-accred-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.v2-accred-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
}
.v2-accred-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.v2-accred-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  padding: 6px 14px;
  border: 1px solid var(--border);
  background: white;
}

/* Section base */
.v2-section {
  padding: clamp(44px, 5.2vw, 64px) 0;
  background: var(--bg);
}
.v2-section--white { background: white; }
.v2-section--sub { background: var(--bg-sub); }
.v2-section--ink { background: var(--ink); color: white; }

.v2-section-head {
  max-width: 740px;
  margin: 0 auto 32px;
  text-align: center;
}
.v2-section-head--left {
  text-align: left;
  margin-left: 0;
  max-width: 760px;
}
.v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 5px 10px;
  background: var(--accent-50);
  border: 1px solid rgba(59, 130, 184, 0.2);
}
.v2-section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.875rem, 3.4vw, 2.625rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 14px;
}
.v2-section-head p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 58ch;
  margin: 0 auto;
}
.v2-section-head--left p { margin-left: 0; }
.v2-section--ink .v2-section-head h2 { color: white; }
.v2-section--ink .v2-section-head p { color: rgba(255, 255, 255, 0.7); }
.v2-section--ink .v2-kicker { color: var(--accent-hot); }

/* Flat bordered grid card base — shared by services/sectors-text/any 2-3 col list */
.v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  background: white;
}
.v2-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .v2-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .v2-grid { grid-template-columns: 1fr; } }
.v2-grid > * {
  padding: 24px 26px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
  transition: background var(--dur-fast) var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.v2-grid > *:hover { background: var(--bg-sub); }
.v2-grid:not(.v2-grid--2) > *:nth-child(3n) { border-right: none; }
.v2-grid:not(.v2-grid--2) > *:nth-last-child(-n+3) { border-bottom: none; }
.v2-grid--2 > *:nth-child(2n) { border-right: none; }
.v2-grid--2 > *:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 900px) {
  .v2-grid:not(.v2-grid--2) > *:nth-child(3n) { border-right: 1px solid var(--border); }
  .v2-grid:not(.v2-grid--2) > *:nth-child(2n) { border-right: none; }
  .v2-grid:not(.v2-grid--2) > *:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .v2-grid:not(.v2-grid--2) > *:nth-last-child(-n+2) { border-bottom: none; }
  .v2-grid--2 > * { border-right: none !important; }
  .v2-grid--2 > *:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .v2-grid--2 > *:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .v2-grid > * { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .v2-grid > *:last-child { border-bottom: none !important; }
}

/* Services */
.v2-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); background: white; }
@media (max-width: 900px) { .v2-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v2-services { grid-template-columns: 1fr; } }
.v2-service {
  padding: 24px 26px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-top: 3px solid transparent;
  background: white;
  transition: background var(--dur-fast) var(--ease), border-top-color var(--dur-fast) var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.v2-service:nth-child(3n) { border-right: none; }
.v2-service:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 900px) {
  .v2-service:nth-child(3n) { border-right: 1px solid var(--border); }
  .v2-service:nth-child(2n) { border-right: none; }
  .v2-service:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .v2-service:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .v2-service { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .v2-service:last-child { border-bottom: none !important; }
}
.v2-service:hover { background: var(--bg-sub); border-top-color: var(--accent); }
.v2-service-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.v2-service-icon {
  width: 34px;
  height: 34px;
  background: var(--accent-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease);
}
.v2-service:hover .v2-service-icon { background: var(--accent); color: white; }
.v2-service-icon svg { width: 18px; height: 18px; stroke-width: 1.75; }
.v2-service-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.v2-service h3 {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.v2-service p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0 0 14px;
  flex: 1;
}
.v2-service-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-fast) var(--ease);
}
.v2-service:hover .v2-service-link { gap: 10px; }
.v2-service-link svg { width: 12px; height: 12px; }

/* Golden thread split */
.v2-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) { .v2-split { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }
.v2-split--reverse .v2-split-media { order: 1; }
@media (min-width: 960px) { .v2-split--reverse { grid-template-columns: 1.1fr 1fr; } .v2-split--reverse .v2-split-media { order: 2; } }
.v2-split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.v2-split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-split-content h2 {
  font-family: var(--display);
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 1.125rem;
  max-width: 18ch;
}
.v2-split-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.v2-split-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}
.v2-split-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.v2-split-list li:last-child { border-bottom: none; }
.v2-split-list svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 3px;
  stroke-width: 2.25;
}
.v2-split-list strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.v2-split-list span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Projects */
.v2-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .v2-projects { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .v2-projects { grid-template-columns: 1fr; } }
.v2-project {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur-fast) var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.v2-project:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}
.v2-project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-sub);
}
.v2-project-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.v2-project:hover .v2-project-media img { transform: scale(1.05); }
.v2-project-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.v2-project-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v2-project-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.v2-project-value { color: var(--accent); font-weight: 600; }
.v2-project h3 {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.v2-project p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0 0 14px;
  flex: 1;
}
.v2-project-cta {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v2-project-cta svg { width: 11px; height: 11px; }

/* Sectors */
.v2-sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 960px) { .v2-sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v2-sectors { grid-template-columns: 1fr; } }
.v2-sector {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--ink);
  color: white;
  display: block;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.v2-sector:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.v2-sector-img { position: absolute; inset: 0; z-index: 1; }
.v2-sector-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.v2-sector:hover .v2-sector-img img { transform: scale(1.06); }
.v2-sector::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(14, 18, 23, 0.05) 0%, rgba(14, 18, 23, 0.7) 55%, rgba(14, 18, 23, 0.95) 100%);
}
.v2-sector-body {
  position: absolute;
  inset: 0;
  padding: 20px 22px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.v2-sector-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v2-sector-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: white;
}
.v2-sector-icon svg { width: 16px; height: 16px; stroke-width: 1.75; }
.v2-sector-index {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
}
.v2-sector-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hot);
  display: block;
  margin-bottom: 6px;
}
.v2-sector h3 {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* Process timeline */
.v2-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 960px) { .v2-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .v2-timeline { grid-template-columns: 1fr; } }
.v2-timeline::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-100), var(--accent), var(--accent-deep));
  z-index: 0;
}
@media (max-width: 960px) { .v2-timeline::before { display: none; } }
.v2-timeline-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}
.v2-timeline-num {
  width: 42px;
  height: 42px;
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
}
.v2-section--white .v2-timeline-num { box-shadow: 0 0 0 4px white; }
.v2-timeline-step {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}
.v2-timeline-item h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.v2-timeline-item p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Pull quote on dark */
.v2-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 0;
}
.v2-quote-mark {
  display: inline-block;
  font-family: var(--display);
  font-size: 3rem;
  color: var(--accent-hot);
  line-height: 0.5;
  margin-bottom: 14px;
}
.v2-quote p {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.4;
  color: white;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.v2-quote cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}
.v2-quote cite strong {
  color: white;
  font-weight: 600;
  margin-right: 8px;
}

/* Final CTA */
.v2-cta {
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.018) 60px,
      rgba(255, 255, 255, 0.018) 61px
    ),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(59, 130, 184, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 90%, rgba(30, 70, 106, 0.38) 0%, transparent 60%),
    var(--ink);
  border-top: 3px solid var(--accent);
  padding: clamp(52px, 6vw, 72px) 0;
  text-align: center;
  color: white;
}
.v2-cta-inner { max-width: 720px; margin: 0 auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.v2-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  font-weight: 600;
  color: white;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.028em;
}
.v2-cta p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 32px;
  max-width: 54ch;
}
.v2-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Deep content row (service / sector detail pages) */
.v2-deep {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.v2-deep:last-child { border-bottom: none; padding-bottom: 8px; }
.v2-deep:first-child { padding-top: 8px; }
@media (min-width: 900px) { .v2-deep { grid-template-columns: 0.45fr 1.55fr; gap: 4rem; } }
.v2-deep-meta {
  position: static;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
@media (min-width: 900px) { .v2-deep-meta { position: sticky; top: 112px; } }
.v2-deep-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-50);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.v2-deep-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.v2-deep-index {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.v2-deep-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.v2-deep-tag {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.v2-deep-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.v2-deep-body ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}
.v2-deep-body ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-body);
}
.v2-deep-body ul li:last-child { border-bottom: none; }
.v2-deep-body ul svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 3px;
  stroke-width: 2.25;
}

/* Simple form */
.v2-form {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}
.v2-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .v2-form-row--2 { grid-template-columns: 1fr 1fr; } }
.v2-form label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.v2-form input,
.v2-form textarea,
.v2-form select {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease);
  font-family: inherit;
}
.v2-form input:focus,
.v2-form textarea:focus,
.v2-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.v2-form textarea { min-height: 140px; resize: vertical; }

/* Contact info tiles */
.v2-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .v2-contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.v2-contact-info {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.v2-contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
}
.v2-contact-row dt {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.v2-contact-row dd {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.v2-contact-row dd a { color: var(--accent); }

