﻿@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/roboto-condensed-600.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-condensed-700.ttf") format("truetype");
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0A2540;
      --steel: #4A6D8B;
      --steel-soft: #6B8FA8;
      --charcoal: #26313B;
      --muted: #5A6470;
      --line: #D7DEE5;
      --light-grey: #F4F7F9;
      --white: #FFFFFF;
      --dark-body: rgba(255, 255, 255, 0.92);
      --dark-supporting: rgba(255, 255, 255, 0.72);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--charcoal);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    h1, h2 {
      font-family: "Roboto Condensed", sans-serif;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: 0;
    }

    h3, h4 {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: 0;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { border: 0; background: none; color: inherit; cursor: pointer; font: inherit; }
    ::selection { background: rgba(74, 109, 139, 0.2); }

    .skip-link {
      position: absolute;
      top: -48px;
      left: 16px;
      z-index: 999;
      background: var(--navy);
      color: var(--white);
      padding: 8px 16px;
      border-radius: 0 0 4px 4px;
      font-size: 14px;
      transition: top 0.2s;
    }

    .skip-link:focus { top: 0; }

    .topnav {
      position: sticky;
      top: 0;
      z-index: 100;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 0 40px;
      background: var(--white);
      border-bottom: 1px solid var(--line);
    }

    .nav-logo-btn {
      display: flex;
      align-items: center;
      padding: 4px 0;
    }

    .nav-logo-btn img {
      width: auto;
      height: 32px;
    }

    .nav-logo-btn img[style*="display: none"] + .brand {
      display: inline-block;
    }

    .nav-logo-btn:focus-visible {
      outline: 2px solid var(--steel);
      outline-offset: 4px;
      border-radius: 2px;
    }

    .brand {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: 0;
      color: var(--navy);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lang-divider {
      width: 1px;
      height: 14px;
      background: var(--line);
    }

    .lang-link {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 4px 0;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .lang-link:hover,
    .lang-link:focus-visible,
    .lang-link.active {
      color: var(--navy);
      border-bottom-color: var(--steel);
      outline: none;
    }

    .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0;
      color: var(--muted);
      padding: 4px 0;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }

    .nav-link:hover,
    .nav-link.active,
    .nav-link:focus-visible {
      color: var(--navy);
      border-bottom-color: var(--steel);
      outline: none;
    }

    .nav-link:focus-visible {
      outline: 2px solid var(--steel);
      outline-offset: 4px;
      border-radius: 2px;
    }

    .nav-cta {
      background: var(--navy);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 4px;
      border-bottom: 0;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      background: var(--steel);
      color: var(--white);
      border-bottom: 0;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--charcoal);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      z-index: 99;
      flex-direction: column;
      gap: 18px;
      padding: 24px 28px 28px;
      background: var(--white);
      border-bottom: 1px solid var(--line);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu .nav-link {
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }

    .mobile-menu .lang-switcher {
      margin-top: 4px;
      gap: 12px;
    }

    .mobile-menu .lang-link {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .container {
      width: 100%;
      max-width: 1080px;
      margin: 0 auto;
    }

    .page { display: none; }
    .page.active { display: block; }

    .section { padding: 72px 40px; }
    .section-sm { padding: 48px 40px; }
    .section-grey { background: var(--light-grey); }

    .section-label,
    .eyebrow,
    .sector-label {
      font-family: "Inter", sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--steel);
    }

    .section-label { margin-bottom: 16px; }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--steel-soft);
      margin-bottom: 24px;
    }

    .eyebrow::after {
      content: "";
      width: 40px;
      height: 1px;
      background: var(--steel-soft);
    }

    .section-h2 {
      font-family: "Roboto Condensed", sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--navy);
      margin-bottom: 16px;
    }

    .section-lead {
      max-width: 640px;
      font-size: 1.05rem;
      color: var(--charcoal);
      line-height: 1.65;
    }

    .body-lg {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--charcoal);
    }

    .body-md {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--charcoal);
    }

    .section-copy {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--charcoal);
    }

    .divider {
      width: 40px;
      height: 1px;
      background: var(--steel);
      margin-bottom: 24px;
    }

    .context-image {
      display: block;
      width: 100%;
      aspect-ratio: 2.3 / 1;
      object-fit: cover;
      object-position: center;
      margin-top: 52px;
      border: 1px solid var(--line);
      border-radius: 4px;
      filter: saturate(0.9) contrast(0.98);
    }

    @media (min-width: 961px) {
      .context-image-en {
        margin-top: 18px;
      }

      .context-copy-en {
        padding-top: 30px;
      }
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .grid-2 > *,
    .grid-3 > *,
    .service-grid > *,
    .contact-layout > *,
    .briefing-card > * {
      min-width: 0;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      padding: 64px 40px 60px;
    }

    .hero::before {
      content: none;
    }

    .hero-image {
      min-height: 470px;
      display: flex;
      align-items: center;
      background-position: center;
      background-size: cover;
    }

    .hero-image::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: rgba(10, 37, 64, 0.76);
    }

    .home-hero {
      background-image: url("../assets/hero-rig-silhouette.jpg");
      background-position: center 48%;
    }

    .services-hero {
      background-image: url("../assets/field-operations.jpg");
      background-position: center 42%;
    }

    .how-hero {
      background-image: url("../assets/how-we-work-hero.jpg");
      background-position: center 54%;
    }

    .about-hero {
      background-image: url("../assets/about-hero.jpg");
      background-position: center 58%;
    }

    .insights-hero {
      background-image: url("../assets/insights-hero.jpg");
      background-position: center 48%;
    }

    .contact-hero {
      background-image: url("../assets/contact-hero.jpg");
      background-position: center 50%;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.18);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      min-width: 0;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero h1 {
      max-width: 760px;
      margin-bottom: 18px;
      color: var(--white);
      font-size: 4rem;
      line-height: 1.05;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .hero-title-line {
      display: block;
    }

    .delivery-hero-title {
      max-width: 900px;
      font-size: 3.35rem;
    }

    .delivery-hero-title .hero-title-line {
      white-space: nowrap;
    }

    .hero p {
      max-width: 640px;
      margin-bottom: 30px;
      color: var(--dark-body);
      font-size: clamp(1rem, 1.8vw, 1.12rem);
      line-height: 1.7;
    }

    .hero .eyebrow {
      max-width: none;
      margin-bottom: 24px;
      color: var(--steel-soft);
      font-size: 11px;
      line-height: 1.6;
    }

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn-white,
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .btn-white {
      background: var(--white);
      color: var(--navy);
      padding: 14px 28px;
    }

    .btn-white:hover,
    .btn-white:focus-visible {
      background: var(--light-grey);
      outline: none;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border-radius: 4px;
      background: var(--navy);
      color: var(--white);
      padding: 14px 28px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0;
      transition: background 0.2s, color 0.2s;
    }

    .btn-dark:hover,
    .btn-dark:focus-visible {
      background: var(--steel);
      color: var(--white);
      outline: none;
    }

    .btn-outline {
      border: 1px solid rgba(255, 255, 255, 0.5);
      color: var(--white);
      padding: 13px 27px;
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
      background: rgba(255, 255, 255, 0.1);
      outline: none;
    }

    .btn-white:focus-visible,
    .btn-dark:focus-visible,
    .btn-outline:focus-visible,
    .nav-cta:focus-visible {
      outline: 2px solid var(--steel);
      outline-offset: 3px;
    }

    .hero .btn-white:focus-visible,
    .hero .btn-outline:focus-visible,
    .cta-strip .btn-white:focus-visible,
    .insights-callout .btn-white:focus-visible {
      outline-color: rgba(255, 255, 255, 0.82);
    }

    .proof-row {
      display: flex;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--white);
    }

    .proof-cell {
      flex: 1;
      padding: 28px 22px;
      border-right: 1px solid var(--line);
    }

    .proof-cell:last-child { border-right: 0; }

    .proof-icon {
      margin-bottom: 10px;
      color: var(--steel);
      font-family: "Inter", sans-serif;
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1;
    }

    .proof-cell h4 {
      margin-bottom: 8px;
      color: var(--navy);
      font-size: 1.1rem;
    }

    .proof-cell p {
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.55;
    }

    .sector-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      overflow: hidden;
      margin-top: 32px;
      border-radius: 4px;
      background: var(--line);
    }

    .sector-card {
      background: var(--white);
      padding: 28px;
    }

    .sector-label { display: block; margin-bottom: 8px; }

    .sector-card h3 {
      margin-bottom: 8px;
      color: var(--navy);
      font-size: 1.25rem;
    }

    .sector-card p {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .card {
      min-height: 100%;
      padding: 32px;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--white);
    }

    #why-nexo .card {
      position: relative;
      overflow: hidden;
    }

    #why-nexo .card::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 4px;
      border-bottom: 1px solid var(--line);
      background: var(--light-grey);
    }

    .card-num {
      margin-bottom: 16px;
      color: var(--steel);
      font-family: "Inter", sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .card h3 {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: 1.25rem;
    }

    .card p {
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.65;
    }

    .section-header {
      max-width: 700px;
      margin-bottom: 56px;
    }

    .service-block {
      padding: 40px 0 48px;
      border-top: 1px solid var(--steel);
      border-bottom: 1px solid var(--line);
    }

    .service-block + .service-block {
      border-top: 0;
    }

    .service-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 64px;
      align-items: start;
    }

    .service-meta {
      position: sticky;
      top: 96px;
    }

    .service-title {
      font-family: "Roboto Condensed", sans-serif;
      margin-bottom: 24px;
      color: var(--navy);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .highlight-bar {
      display: inline-flex;
      align-items: center;
      padding: 5px 12px;
      margin-top: 32px;
      border-left: 2px solid var(--steel);
      border-radius: 4px;
      background: rgba(74, 109, 139, 0.12);
    }

    .deliverables-list {
      margin-top: 16px;
      list-style: none;
    }

    .deliverables-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
      color: var(--charcoal);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .deliverables-list li:last-child {
      border-bottom: 0;
    }

    .deliverables-list li::before {
      content: "-";
      flex-shrink: 0;
      color: var(--steel);
      font-weight: 600;
    }

    .diff-block {
      margin-top: 32px;
      padding: 32px;
      border-radius: 4px;
      background: var(--light-grey);
    }

    .other-services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .other-service {
      padding: 24px 28px;
      border: 1px solid var(--line);
      border-left: 2px solid var(--steel);
      border-radius: 4px;
      background: var(--white);
    }

    .other-service h4 {
      margin-bottom: 8px;
      color: var(--navy);
      font-size: 1.1rem;
    }

    .other-service p {
      color: var(--muted);
      font-size: 0.875rem;
      line-height: 1.55;
    }

    .insight-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--white);
      transition: border-color 0.2s;
    }

    .insights-grid {
      align-items: stretch;
    }

    .insight-card:hover {
      border-color: rgba(74, 109, 139, 0.45);
    }

    .insight-card-header {
      height: 4px;
      background: var(--steel);
    }

    .insight-card-body {
      padding: 24px 24px 22px;
    }

    .insight-tag {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--steel);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .insight-title {
      margin-bottom: 14px;
      color: var(--navy);
      font-size: 1.15rem;
      line-height: 1.3;
    }

    .insight-title a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }

    .insight-title a:hover,
    .insight-title a:focus-visible {
      color: var(--steel);
      outline: none;
    }

    .insight-excerpt {
      margin-bottom: 20px;
      color: var(--charcoal);
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .insight-note {
      margin: -4px 0 22px;
      padding: 2px 0 2px 12px;
      border-left: 2px solid #f5b400;
      color: var(--muted);
      font-size: 0.8rem;
      font-style: italic;
      line-height: 1.5;
      white-space: nowrap;
    }

    .insight-note a {
      color: #8a6200;
      font-weight: 600;
      text-decoration: none;
    }

    .insight-note a:hover,
    .insight-note a:focus-visible {
      color: #6f4f00;
      outline: none;
    }

    .insight-status {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 2px;
      background: var(--light-grey);
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .insight-status.insight-link {
      color: var(--navy);
      text-transform: none;
      transition: background 0.2s, color 0.2s;
    }

    .insight-status.insight-link:hover,
    .insight-status.insight-link:focus-visible {
      background: var(--line);
      color: var(--navy);
      outline: none;
    }

    .insights-callout {
      display: flex;
      align-items: flex-start;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 56px;
      padding: 32px 36px;
      border-radius: 4px;
      background: var(--navy);
    }

    .insights-callout-label {
      flex: 0 1 292px;
      min-width: 0;
    }

    .insights-callout-main {
      flex: 1;
      min-width: 240px;
      padding-left: 32px;
      border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .insights-callout-main p {
      margin-bottom: 16px;
      color: var(--dark-supporting);
      font-size: 0.9rem;
      line-height: 1.65;
    }

    .briefing-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
      padding: 40px 48px;
      border-radius: 4px;
      background: var(--light-grey);
    }

    .subscribe-card {
      grid-template-columns: minmax(0, 1fr) minmax(420px, 460px);
      scroll-margin-top: 96px;
      align-items: start;
    }

    .subscribe-card .body-md {
      max-width: 520px;
    }

    .subscribe-form {
      display: grid;
      justify-self: end;
      width: min(100%, 460px);
      gap: 14px;
    }

    .subscribe-form .form-group {
      margin-bottom: 0;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      margin-bottom: 6px;
      color: var(--charcoal);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--white);
      color: var(--charcoal);
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--steel);
      box-shadow: 0 0 0 3px rgba(74, 109, 139, 0.15);
    }

    .form-textarea {
      min-height: 140px;
      resize: vertical;
    }

.form-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.form-submit {
  width: 100%;
  justify-content: center;
      border-radius: 4px;
      background: var(--navy);
      color: var(--white);
      padding: 14px 24px;
    }

    .form-submit:hover,
    .form-submit:focus-visible {
      background: var(--steel);
      color: var(--white);
    }

    .form-submit:disabled {
      cursor: progress;
      opacity: 0.72;
    }

    .form-success {
      display: none;
      margin-top: 16px;
      padding: 14px 18px;
      border: 1px solid var(--steel);
      border-radius: 4px;
      background: rgba(74, 109, 139, 0.1);
      color: var(--navy);
      font-size: 0.9rem;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(10, 37, 64, 0.44);
    }

    .modal-overlay[hidden] {
      display: none;
    }

    .modal-panel {
      position: relative;
      width: min(100%, 460px);
      padding: 32px;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--white);
      box-shadow: 0 24px 70px rgba(10, 37, 64, 0.22);
    }

    .modal-title {
      margin: 0 36px 12px 0;
      color: var(--navy);
      font-family: "Roboto Condensed", "Inter", sans-serif;
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: 0;
    }

    .modal-text {
      margin: 0;
      color: var(--charcoal);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--white);
      color: var(--navy);
      font-size: 1.2rem;
      line-height: 1;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .modal-close:hover,
    .modal-close:focus-visible {
      border-color: var(--steel);
      background: var(--light-grey);
      outline: none;
    }

    .modal-action {
      width: 100%;
      justify-content: center;
      margin-top: 24px;
    }

    .direct-contact {
      position: sticky;
      top: 96px;
    }

    .contact-card {
      margin-bottom: 24px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--white);
    }

    .contact-card-grey {
      background: var(--light-grey);
    }

    .contact-card h4 {
      margin-bottom: 14px;
      color: var(--navy);
      font-size: 1.15rem;
    }

    .contact-card a {
      color: var(--steel);
      font-size: 0.95rem;
      font-weight: 600;
      word-break: break-word;
    }

    .contact-card a:hover,
    .contact-card a:focus-visible {
      color: var(--navy);
      outline: none;
    }

    .method-step {
      display: flex;
      gap: 28px;
      padding: 40px 0;
      border-bottom: 1px solid var(--line);
    }

    .method-step:last-child {
      border-bottom: 0;
    }

    .method-step-num {
      flex-shrink: 0;
      width: 56px;
      color: var(--line);
      font-family: "Roboto Condensed", sans-serif;
      font-size: 3rem;
      font-weight: 700;
      line-height: 1;
      text-align: right;
    }

    .method-step-content {
      flex: 1;
      padding-top: 8px;
    }

    .method-step-content h3 {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: 1.35rem;
    }

    .method-step-content p {
      margin-bottom: 16px;
      color: var(--charcoal);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .method-checklist {
      margin-top: 16px;
      list-style: none;
    }

    .method-checklist li {
      display: flex;
      gap: 10px;
      padding: 6px 0;
      border-bottom: 1px solid var(--light-grey);
      color: var(--charcoal);
      font-size: 0.875rem;
      line-height: 1.5;
    }

    .method-checklist li:last-child {
      border-bottom: 0;
    }

    .method-checklist li::before {
      content: "-";
      flex-shrink: 0;
      color: var(--steel);
      font-weight: 600;
    }

    .rule {
      height: 1px;
      margin: 48px 0 0;
      border: 0;
      background: var(--line);
    }

    .team-types {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      overflow: hidden;
      margin-top: 36px;
      border-radius: 4px;
      background: var(--line);
    }

    .team-type-card {
      min-height: 100%;
      padding: 28px;
      background: var(--white);
    }

    .team-type-card h4 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: 1.1rem;
    }

    .team-type-card p {
      color: var(--charcoal);
      font-size: 0.88rem;
      line-height: 1.65;
    }

    .section-copy a {
      color: var(--navy);
      font-weight: 600;
      border-bottom: 1px solid var(--steel);
      transition: color 0.2s, border-color 0.2s;
    }

    .section-copy a:hover,
    .section-copy a:focus-visible {
      color: var(--steel);
      border-bottom-color: var(--navy);
      outline: none;
    }

    .profiles-section-heading {
      font-family: "Roboto Condensed", sans-serif;
      scroll-margin-top: 96px;
      margin-top: 48px;
      margin-bottom: 8px;
      color: var(--navy);
      font-size: 1.65rem;
    }

    .profiles-section-sub {
      max-width: 900px;
      color: var(--charcoal);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .team-grid,
    .board-grid {
      display: grid;
      grid-template-columns: repeat(3, 320px);
      justify-content: center;
      gap: 56px 48px;
      max-width: 1080px;
      margin-top: 28px;
      margin-right: auto;
      margin-left: auto;
    }

    .team-card {
      justify-self: center;
      width: 100%;
      max-width: 280px;
      min-height: 100%;
    }

    @media (min-width: 961px) {
      .team-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        column-gap: 0;
      }

      .team-grid .team-card:nth-child(1) {
        grid-column: 1 / span 2;
      }

      .team-grid .team-card:nth-child(2) {
        grid-column: 3 / span 2;
      }

      .team-grid .team-card:nth-child(3) {
        grid-column: 5 / span 2;
      }

      .team-grid .team-card:nth-child(4) {
        grid-column: 2 / span 2;
      }

      .team-grid .team-card:nth-child(5) {
        grid-column: 4 / span 2;
      }
    }

    .team-photo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      margin-bottom: 18px;
      border-radius: 4px;
      background: var(--light-grey);
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(0.92) contrast(0.98);
    }

    .team-photo-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      background: var(--navy);
      color: var(--dark-supporting);
      font-family: "Roboto Condensed", sans-serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0;
    }

    .team-name {
      margin-bottom: 4px;
      color: var(--charcoal);
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.15;
    }

    .team-title {
      margin-bottom: 10px;
      color: var(--steel);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .team-bio {
      margin-bottom: 12px;
      color: var(--charcoal);
      font-size: 0.875rem;
      line-height: 1.55;
    }

    .team-linkedin {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--steel);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0;
      transition: color 0.2s;
    }

    .team-linkedin:hover,
    .team-linkedin:focus-visible {
      color: var(--navy);
      outline: none;
    }

    .team-linkedin::before {
      content: "in";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 3px;
      background: var(--steel);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 600;
    }

    .advisory-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 4px;
      background: var(--white);
      transition: border-color 0.2s;
    }

    .advisory-card:hover {
      border-color: rgba(74, 109, 139, 0.45);
    }

    .advisory-photo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      aspect-ratio: 1;
      background: var(--light-grey);
    }

    .advisory-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(0.92) contrast(0.98);
    }

    .advisory-photo-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      background: var(--navy);
      color: var(--dark-supporting);
      font-family: "Roboto Condensed", sans-serif;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0;
    }

    .advisory-body {
      padding: 20px;
    }

    .advisory-body .team-name {
      margin-bottom: 12px;
    }

    .cta-strip {
      background: var(--navy);
      padding: 64px 40px;
    }

    .cta-strip h2 {
      font-family: "Roboto Condensed", sans-serif;
      max-width: 600px;
      margin-bottom: 12px;
      color: var(--white);
      font-size: clamp(1.5rem, 3vw, 2.2rem);
    }

    .cta-strip p {
      max-width: 520px;
      margin-bottom: 28px;
      color: var(--dark-body);
      font-size: 1rem;
      line-height: 1.6;
    }

    .cta-strip .section-label,
    .insights-callout .section-label {
      max-width: none;
      color: var(--steel-soft);
      font-size: 11px;
      line-height: 1.6;
    }

    .cta-strip .section-label {
      margin-bottom: 16px;
    }

    .site-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      padding: 32px 40px;
      background: var(--navy);
      color: var(--dark-supporting);
      font-size: 12px;
    }

    .site-footer .brand {
      color: var(--white);
    }

    .site-footer .nav-logo-btn:focus-visible {
      outline-color: var(--steel);
    }

    .site-footer .nav-links {
      display: flex;
      gap: 20px;
      align-items: center;
      margin-left: auto;
    }

    .site-footer .lang-switcher {
      margin-left: 0;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 0;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 4px;
      color: var(--dark-supporting);
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .social-link:hover,
    .social-link:focus-visible {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.34);
      color: var(--white);
      outline: none;
    }

    .social-link:focus-visible {
      outline: 2px solid var(--steel);
      outline-offset: 3px;
    }

    .social-icon {
      display: block;
      width: 18px;
      height: 18px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      filter: brightness(0) invert(1);
      opacity: 0.72;
      transition: opacity 0.2s;
    }

    .social-link:hover .social-icon,
    .social-link:focus-visible .social-icon {
      opacity: 1;
    }

    .social-icon-linkedin {
      background-image: url("../assets/social-linkedin.svg");
    }

    .social-icon-x {
      background-image: url("../assets/social-x.svg");
    }

    .social-icon-instagram {
      background-image: url("../assets/social-instagram.svg");
    }

    .site-footer .nav-link {
      color: var(--dark-supporting);
      font-size: 0.9rem;
      padding: 4px 0;
    }

    .site-footer .nav-link:hover,
    .site-footer .nav-link.active,
    .site-footer .nav-link:focus-visible {
      color: var(--white);
      border-bottom-color: var(--steel);
    }

    .site-footer .lang-link {
      color: var(--dark-supporting);
    }

    .site-footer .lang-link:hover,
    .site-footer .lang-link:focus-visible,
    .site-footer .lang-link.active {
      color: var(--white);
      border-bottom-color: var(--steel);
    }

    .site-footer .nav-cta {
      background: var(--white);
      color: var(--navy);
    }

    .site-footer .nav-cta:hover,
    .site-footer .nav-cta:focus-visible {
      background: var(--light-grey);
      color: var(--navy);
    }

    .footer-copy {
      width: 100%;
      color: var(--dark-supporting);
      font-size: 12px;
    }

    .footer-copy a:hover,
    .footer-copy a:focus-visible {
      color: var(--white);
      outline: none;
    }

    @media (max-width: 960px) {
      .grid-2 { grid-template-columns: 1fr; gap: 40px; }
      .grid-3 { grid-template-columns: 1fr 1fr; }
      .service-grid { grid-template-columns: 1fr; gap: 32px; }
      .service-meta { position: static; }
      .contact-layout { grid-template-columns: 1fr; gap: 48px; }
      .direct-contact { position: static; }
      .team-types { grid-template-columns: 1fr; }
      .team-grid, .board-grid {
        grid-template-columns: repeat(2, minmax(0, 320px));
        justify-content: center;
      }
      .hero h1 { font-size: 3rem; }
      .delivery-hero-title { font-size: 2.7rem; }
    }

    @media (max-width: 768px) {
      .topnav { padding: 0 20px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 44px 20px 40px; }
      .hero h1 {
        max-width: 100%;
        font-size: 2.1rem;
        line-height: 1.12;
        text-wrap: normal;
      }
      .delivery-hero-title { font-size: 2.1rem; }
      .desktop-break { display: none; }
      .hero-title-line { display: inline; }
      .hero-title-line + .hero-title-line::before { content: " "; }
      .delivery-hero-title .hero-title-line { display: block; }
      .delivery-hero-title .hero-title-line + .hero-title-line::before { content: ""; }
      .delivery-hero-title .hero-title-line { white-space: normal; }
      .context-image { margin-top: 28px; }
      .section, .section-sm, .cta-strip { padding-left: 20px; padding-right: 20px; }
      .proof-row { flex-direction: column; }
      .proof-cell {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
      .proof-cell:last-child { border-bottom: 0; }
      .sector-grid { grid-template-columns: 1fr; }
      .grid-3 { grid-template-columns: 1fr; }
      .other-services-grid { grid-template-columns: 1fr; }
      .insights-callout { padding: 28px; }
      .insights-callout-label { flex-basis: 100%; }
      .insights-callout-main {
        width: 100%;
        padding-left: 0;
        border-left: 0;
      }
      .briefing-card { grid-template-columns: 1fr; padding: 32px 28px; }
      .subscribe-form { justify-self: stretch; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .team-grid, .board-grid {
        grid-template-columns: minmax(0, 320px);
        justify-content: center;
      }
      .method-step { gap: 18px; }
      .method-step-num { width: 36px; font-size: 2.4rem; }
      .site-footer { align-items: flex-start; flex-direction: column; padding-left: 20px; padding-right: 20px; }
      .site-footer .nav-links { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-left: 0; }
      .site-footer .lang-switcher { margin-left: 0; }
      .footer-socials { margin-top: 2px; }
    }

    @media (max-width: 560px) {
      .btn-white, .btn-outline { width: 100%; }
      .hero h1 { font-size: 1.9rem; }
      .delivery-hero-title { font-size: 1.82rem; }
    }

    @media (max-width: 430px) {
      .delivery-hero-title { font-size: 1.5rem; }
    }

    @media (max-width: 380px) {
      .hero h1 { font-size: 1.78rem; }
      .delivery-hero-title { font-size: 1.42rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
      }
    }

