/* ===== WOFM â€” Welwitschia Offshore Facilities Management ===== */
@import url("../../../shared/css/design-tokens.css");

/* ---------- Design Tokens ---------- */
:root {
  --wofm-navy: #1a1f5e;
  --wofm-navy-dark: #0e1240;
  --wofm-navy-light: #2a3078;
  --wofm-gold: #e8a838;
  --wofm-gold-light: #f0c060;
  --wofm-teal: #00838f;
  --wofm-teal-light: #26a69a;
  --wofm-orange: #e65100;
  --wofm-white: #ffffff;
  --wofm-off-white: #f5f6fa;
  --wofm-gray: #6b7280;
  --wofm-gray-light: #e5e7eb;
  --wofm-text: #1f2937;
  --wofm-radius: var(--wg-radius-lg);
  --wofm-shadow: 0 8px 32px rgba(26,31,94,0.12);
  --wofm-shadow-lg: 0 16px 48px rgba(26,31,94,0.18);
  --wofm-transition: var(--wg-transition-smooth);
  --wofm-font-heading: var(--wg-font-heading);
  --wofm-font-body: var(--wg-font-body);
  --wofm-font-size-h1: var(--wg-font-size-4xl);
  --wofm-font-size-h2: var(--wg-font-size-3xl);
  --wofm-font-size-body: var(--wg-font-size-base);
  --wofm-font-size-h3: var(--wg-font-size-xl);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--wofm-font-body);
  color: var(--wofm-text);
  background: var(--wofm-white);
  font-size: var(--wofm-font-size-body);
  line-height: var(--wg-line-height-relaxed);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

h1, h2, h3, h4, h5 {
  font-family: var(--wofm-font-heading);
  font-weight: var(--wg-font-weight-bold);
  line-height: var(--wg-line-height-tight);
}

h1 { font-size: var(--wofm-font-size-h1); }
h2 { font-size: var(--wofm-font-size-h2); }
p { font-size: var(--wofm-font-size-body); }

a { text-decoration: none; color: inherit; transition: var(--wofm-transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5, p, a, span {
  overflow-wrap: break-word;
}

.container {
  max-width: var(--wg-container-max);
  margin: 0 auto;
  padding: 0 var(--wg-container-padding);
}

.wofm-stats > *,
.wofm-values-grid > *,
.wofm-footer-grid > *,
.wofm-iso-grid > *,
.wofm-training-list > *,
.wofm-sector-modern-grid > *,
.wofm-profile-highlight-grid > * {
  min-width: 0;
}

/* ---------- Navbar ---------- */
.wofm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--wofm-transition);
  background: transparent;
}

.wofm-nav.scrolled {
  background: rgba(26,31,94,0.97);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}

.wofm-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wofm-nav-logo img {
  height: 66px;
  transition: var(--wofm-transition);
}

.wofm-nav.scrolled .wofm-nav-logo img { height: 52px; }

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

.wofm-nav-links a {
  color: var(--wofm-white);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 0;
  position: relative;
  letter-spacing: 0.2px;
  text-transform: none;
}

.wofm-nav-links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--wofm-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--wofm-transition);
}

.wofm-nav-links a:hover {
  color: rgba(255,255,255,0.96);
}

.wofm-nav-links a.active::after {
  transform: scaleX(1);
}

.wofm-nav-links a.nav-cta {
  background: var(--wofm-gold);
  color: var(--wofm-navy-dark);
  font-weight: 700;
}

.wofm-nav-links a.nav-cta:hover {
  background: var(--wofm-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,168,56,0.4);
}

/* Hamburger */
.wofm-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.wofm-hamburger span {
  width: 28px; height: 3px;
  background: var(--wofm-white);
  border-radius: 2px;
  transition: var(--wofm-transition);
}
.wofm-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.wofm-hamburger.open span:nth-child(2) { opacity: 0; }
.wofm-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

/* ---------- Hero ---------- */
.wofm-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--wofm-navy-dark);
}

.wofm-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 12s ease;
}

.wofm-hero:hover .wofm-hero-bg { transform: scale(1.1); }

.wofm-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10,16,46,0.72); /* dark overlay without white fade */
}

/* Animated topographic lines */
.wofm-hero::after {
  content: none; /* disable fade overlay lines */
}

/* Scroll hint fix */
.wofm-scroll-hint {
  pointer-events: auto;
  opacity: 0.95;
}

.wofm-scroll-hint svg {
  width: 26px; height: 26px;
  stroke: var(--wofm-gold);
  opacity: 1;
}

.wofm-hero::after {
  content: none;
}

.wofm-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--wofm-white);
  max-width: 900px;
  width: 100%;
  padding: 120px 24px 110px;
}

.wofm-hero h1 {
  font-size: var(--wofm-font-size-h1);
  font-weight: 900;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-wrap: balance;
}

.wofm-hero h1 span {
  color: var(--wofm-gold);
}

.wofm-hero-sub {
  font-size: var(--wofm-font-size-body);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}

.wofm-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}

/* ---------- Buttons ---------- */
.wofm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--wofm-transition);
  text-transform: uppercase;
}

.wofm-btn-primary {
  background: var(--wofm-gold);
  color: var(--wofm-navy-dark);
  border-color: var(--wofm-gold);
}
.wofm-btn-primary:hover {
  background: var(--wofm-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,168,56,0.4);
}

.wofm-btn-outline {
  background: transparent;
  color: var(--wofm-white);
  border-color: rgba(255,255,255,0.4);
}
.wofm-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--wofm-white);
  transform: translateY(-3px);
}

.wofm-btn-navy {
  background: var(--wofm-navy);
  color: var(--wofm-white);
  border-color: var(--wofm-navy);
}
.wofm-btn-navy:hover {
  background: var(--wofm-navy-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,31,94,0.3);
}

.wofm-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}

.wofm-btn svg circle,
.wofm-btn svg path,
.wofm-btn svg rect,
.wofm-btn svg line,
.wofm-btn svg polyline,
.wofm-btn svg polygon {
  fill: currentColor;
  stroke: currentColor;
}

/* ---------- Sections ---------- */
.wofm-section {
  padding: 100px 0;
  position: relative;
}

.wofm-section:not(.wofm-section-alt):not(.wofm-section-navy):not(.wofm-section-dark):not(.wofm-section-social-dark):not(.wofm-profile-highlights-dark) {
  background: linear-gradient(180deg, #ffffff 0%, #f5f6fa 100%);
}

.wofm-section-alt {
  background: linear-gradient(180deg, #eef0f7 0%, #dfe3ef 100%);
}

.wofm-purpose-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.wofm-purpose-intro {
  position: relative;
  padding: 36px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(26,31,94,0.1);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px 28px;
}

.wofm-purpose-intro::after {
  content: none;
}

.wofm-purpose-intro-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.wofm-purpose-intro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,31,94,0.08), rgba(0,131,143,0.1));
  border: 1px solid rgba(26,31,94,0.08);
}

.wofm-purpose-intro-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--wofm-navy);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wofm-purpose-intro-badge > span:last-child {
  color: var(--wofm-navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wofm-purpose-intro .tag,
.wofm-purpose-intro h2,
.wofm-purpose-intro p {
  position: relative;
  z-index: 1;
}

.wofm-purpose-intro-badge,
.wofm-purpose-intro .tag,
.wofm-purpose-intro h2,
.wofm-purpose-intro p {
  grid-column: 1;
}

.wofm-purpose-intro .tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--wofm-navy);
}

.wofm-purpose-intro h2 {
  margin: 0 0 16px;
  color: var(--wofm-navy-dark);
}

.wofm-purpose-intro p {
  margin: 0;
  max-width: 48ch;
  color: #4b5563;
  line-height: 1.8;
}

.wofm-purpose-points {
  display: grid;
  gap: 14px;
  margin-top: 0;
  grid-column: 2;
  grid-row: 1 / span 4;
  align-content: start;
}

.wofm-purpose-point {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(26,31,94,0.1);
  background: var(--wofm-white);
}

.wofm-purpose-point strong {
  color: var(--wofm-navy-dark);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wofm-purpose-point span {
  color: #6b7280;
  font-size: 0.94rem;
  line-height: 1.7;
}

.wofm-purpose-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  grid-column: 1 / -1;
}

.wofm-purpose-signal span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(26,31,94,0.06);
  color: var(--wofm-navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wofm-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wofm-purpose-card {
  position: relative;
  padding: 26px;
  min-height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(26,31,94,0.1);
  background: var(--wofm-white);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wofm-purpose-card-vision .wofm-purpose-icon {
  background: linear-gradient(135deg, rgba(232,168,56,0.14), rgba(232,168,56,0.06));
  border-color: rgba(232,168,56,0.2);
}

.wofm-purpose-card-mission .wofm-purpose-icon {
  background: linear-gradient(135deg, rgba(0,131,143,0.12), rgba(0,131,143,0.05));
  border-color: rgba(0,131,143,0.18);
}

.wofm-purpose-card::before {
  content: none;
}

.wofm-purpose-card::after {
  content: none;
}

.wofm-purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
  border-color: rgba(26,31,94,0.16);
}

.wofm-purpose-card-top,
.wofm-purpose-card h3,
.wofm-purpose-card p {
  position: relative;
  z-index: 1;
}

.wofm-purpose-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.wofm-purpose-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wofm-gray);
}

.wofm-purpose-icon {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(26,31,94,0.08), rgba(0,131,143,0.08));
  border: 1px solid rgba(26,31,94,0.1);
}

.wofm-purpose-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--wofm-navy);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wofm-purpose-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.22;
  color: var(--wofm-navy-dark);
  max-width: 15ch;
}

.wofm-purpose-card p {
  margin: 0;
  color: var(--wofm-gray);
  line-height: 1.65;
  font-size: 0.96rem;
}

.wofm-purpose-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.wofm-purpose-list li {
  position: relative;
  padding-left: 18px;
  color: #526071;
  font-size: 0.92rem;
  line-height: 1.55;
}

.wofm-purpose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wofm-gold);
}

.wofm-section-dark {
  background: var(--wofm-navy-dark);
  color: var(--wofm-white);
}

.wofm-section-dark.wofm-section-training-light {
  background: #e9edf6;
  color: var(--wofm-text);
}

.wofm-section-dark.wofm-section-training-light .wofm-section-header .tag {
  color: var(--wofm-teal);
}

.wofm-section-dark.wofm-section-training-light .wofm-section-header h2 {
  color: var(--wofm-navy-dark);
}

.wofm-section-dark.wofm-section-training-light .wofm-section-header p {
  color: #546173;
}

.wofm-section-navy {
  background: linear-gradient(135deg, var(--wofm-navy) 0%, var(--wofm-navy-dark) 100%);
  color: var(--wofm-white);
}

.wofm-section-standards-solid {
  background: var(--wofm-navy-dark);
}

.wofm-section.wofm-section-social-dark {
  background: #0e1240;
  color: var(--wofm-white);
}

.wofm-section-social-dark .wofm-split-text .tag {
  color: var(--wofm-gold);
}

.wofm-section-social-dark .wofm-split-text h2 {
  color: var(--wofm-white);
}

.wofm-section-social-dark .wofm-split-text p {
  color: rgba(255,255,255,0.74);
}

.wofm-section-social-dark .wofm-split-text ul li {
  color: rgba(255,255,255,0.86);
}

.wofm-section-social-dark .wofm-split-text ul li::before {
  background: var(--wofm-gold-light);
}

.wofm-section-social-dark .wofm-split-img {
  box-shadow: 0 28px 64px rgba(0,0,0,0.32);
}

.wofm-section-social-dark .wofm-split-img::before {
  background: linear-gradient(180deg, rgba(6,10,28,0.28) 20%, rgba(6,10,28,0.68) 100%);
}

.wofm-section-social-dark .wofm-split-img::after {
  background: linear-gradient(135deg, rgba(232,168,56,0.9), rgba(240,192,96,0.9));
  opacity: 0.2;
}

.wofm-section-sectors {
  background:
    radial-gradient(circle at top right, rgba(232, 168, 56, 0.14), transparent 26%),
    linear-gradient(180deg, #18205f 0%, #1a2467 38%, #24377a 68%, #35508d 100%);
}

.wofm-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.wofm-section-header .tag {
  display: inline-block;
  color: var(--wofm-teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wofm-section-dark .wofm-section-header .tag,
.wofm-section-navy .wofm-section-header .tag {
  color: var(--wofm-gold);
}

.wofm-section-header h2 {
  font-size: var(--wofm-font-size-h2);
  margin-bottom: 16px;
  color: var(--wofm-navy-dark);
}

.wofm-section-dark .wofm-section-header h2,
.wofm-section-navy .wofm-section-header h2 {
  color: var(--wofm-white);
}

.wofm-section-header p {
  font-size: var(--wofm-font-size-body);
  color: var(--wofm-gray);
  line-height: 1.8;
}

.wofm-section-dark .wofm-section-header p,
.wofm-section-navy .wofm-section-header p {
  color: rgba(255,255,255,0.7);
}

/* ---------- Stats Banner ---------- */
.wofm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: -54px auto 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  position: relative;
  z-index: 3;
  width: calc(100% - 32px);
}

.wofm-stat {
  text-align: left;
  padding: 32px 28px 30px;
  position: relative;
  color: var(--wofm-text);
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(245,246,250,0.98) 100%);
  border: 1px solid rgba(26,31,94,0.08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(26,31,94,0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  overflow: hidden;
}

.wofm-stat::before {
  content: none;
}

.wofm-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(26,31,94,0.14);
  box-shadow: 0 26px 56px rgba(26,31,94,0.16);
}

.wofm-stat-icon {
  width: 58px; height: 58px;
  margin: 0 0 18px;
  background: linear-gradient(135deg, rgba(26,31,94,0.08), rgba(0,131,143,0.12));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26,31,94,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.wofm-stat-icon svg {
  width: 26px; height: 26px;
  stroke: var(--wofm-teal);
  fill: none;
  stroke-width: 2;
}

.wofm-stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wofm-navy-dark);
  font-family: var(--wofm-font-heading);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.wofm-stat p {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: var(--wofm-navy);
  font-weight: 700;
  margin-bottom: 12px;
  min-height: 2.8em;
}

.wofm-stat-note {
  display: block;
  max-width: 28ch;
  color: var(--wofm-gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ---------- Service Cards ---------- */
.wofm-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.wofm-service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247,249,253,0.98) 100%);
  border-radius: 22px;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  border: 1px solid rgba(26,31,94,0.1);
  box-shadow: 0 18px 42px rgba(17, 28, 78, 0.1);
}

.wofm-service-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #dbe3f0;
}

.wofm-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 48, 0.08) 0%, rgba(9, 15, 48, 0.34) 100%);
}

.wofm-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Portrait assets: fill the card but keep the subject's face in frame */
.wofm-service-media--portrait img {
  object-position: center top;
}

.wofm-service-card-inner {
  padding: 32px 30px 28px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#services .wofm-section-header {
  max-width: 860px;
  margin-bottom: 46px;
}

#services .wofm-section-header h2 {
  margin: 0 auto 18px;
  max-width: 14ch;
  font-size: clamp(2.4rem, 4.2vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

#services .wofm-section-header p {
  max-width: 64ch;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #4b5567;
}

.wofm-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(26,31,94,0.05), transparent 34%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.wofm-service-card::after {
  content: none;
}

.wofm-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(26,31,94,0.16);
  box-shadow: 0 28px 58px rgba(17, 28, 78, 0.16);
}

.wofm-service-card:hover .wofm-service-media img {
  transform: scale(1.06);
}

.wofm-service-card:hover::before {
  opacity: 1;
}

.wofm-service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.wofm-service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,31,94,0.08), rgba(0,131,143,0.08));
  color: var(--wofm-navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border: 1px solid rgba(26,31,94,0.08);
}

.wofm-service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(232,168,56,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--wofm-transition);
  border: 1px solid rgba(232,168,56,0.24);
  box-shadow: 0 10px 20px rgba(232,168,56,0.12);
}

.wofm-service-card:hover .wofm-service-icon {
  background: rgba(232,168,56,0.22);
  border-color: rgba(232,168,56,0.34);
  box-shadow: 0 14px 26px rgba(232,168,56,0.2);
}

.wofm-service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--wofm-gold);
  fill: none;
  stroke-width: 2;
}

.wofm-service-card h3 {
  font-size: 1.32rem;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--wofm-navy-dark);
  max-width: 15ch;
}

.wofm-service-card p {
  color: var(--wofm-gray);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.wofm-service-meta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(26,31,94,0.08);
  color: var(--wofm-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ---------- Two-Column Layout ---------- */
.wofm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wofm-split-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(26,31,94,0.18);
}

.wofm-split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease;
  backface-visibility: hidden;
}

.wofm-split-img--headshot img {
  object-position: center top;
}

.wofm-split-img:hover img { transform: scale(1.05); }

/* Fade only — avoid translateY on the image column (it softens the photo) */
.wofm-split-img.anim-hidden {
  opacity: 0;
  transform: none;
}

.wofm-split-img.anim-visible {
  opacity: 1;
  transform: none;
}

.wofm-split-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,31,94,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.wofm-split-img--headshot::before {
  background: linear-gradient(180deg, transparent 72%, rgba(26,31,94,0.14) 100%);
}

.wofm-split-img::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--wofm-gold), var(--wofm-gold-light));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.wofm-split-text h2 {
  font-size: var(--wofm-font-size-h2);
  color: var(--wofm-navy-dark);
  margin-bottom: 20px;
}

.wofm-split-text .tag {
  display: inline-block;
  color: var(--wofm-teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wofm-split-text p {
  color: var(--wofm-gray);
  font-size: var(--wofm-font-size-body);
  margin-bottom: 16px;
  line-height: 1.8;
}

.wofm-split-text ul {
  margin: 20px 0;
}

.wofm-split-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--wofm-text);
  font-weight: 500;
}

.wofm-split-text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--wofm-gold);
  border-radius: 3px;
  transform: rotate(45deg);
}

/* ---------- CTA Banner ---------- */
.wofm-cta {
  padding: 90px 0;
  background: linear-gradient(180deg, #eef2f8 0%, #e2e8f2 100%);
  position: relative;
  overflow: hidden;
  color: var(--wofm-navy-dark);
  border-top: 1px solid rgba(26,31,94,0.06);
}

.wofm-cta::before {
  content: '';
  position: absolute;
  top: -20%; right: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(26,31,94,0.08), transparent 68%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.wofm-cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px 44px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(232,168,56,0.16), transparent 23%),
    radial-gradient(circle at bottom left, rgba(38,166,154,0.12), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f3f6fb 100%);
  border: 1px solid rgba(26,31,94,0.09);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.wofm-cta-copy .tag {
  margin-bottom: 16px;
}

.wofm-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--wofm-navy-dark);
  max-width: 14ch;
}

.wofm-cta p {
  font-size: 1.04rem;
  color: rgba(31,41,55,0.8);
  max-width: 58ch;
  margin: 0;
  line-height: 1.85;
}

.wofm-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(26,31,94,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.wofm-cta .wofm-btn {
  width: auto;
  min-width: 0;
  justify-content: center;
}

.wofm-cta .wofm-btn-primary {
  box-shadow: 0 14px 30px rgba(232,168,56,0.22);
}

.wofm-cta .wofm-btn-outline {
  color: var(--wofm-navy-dark);
  border-color: rgba(26,31,94,0.14);
  background: rgba(255,255,255,0.7);
}

.wofm-cta .wofm-btn-outline:hover {
  background: rgba(26,31,94,0.06);
  border-color: rgba(26,31,94,0.28);
}

.wofm-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(26,31,94,0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.wofm-cta-note::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wofm-teal-light);
  box-shadow: 0 0 0 6px rgba(38,166,154,0.12);
  flex-shrink: 0;
}

/* ---------- ISO / Standards Cards ---------- */
.wofm-standards-shell {
  display: grid;
  gap: 24px;
}

.wofm-standards-lead {
  display: grid;
  gap: 18px;
  padding: 32px 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at top right, rgba(232,168,56,0.14), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 24px 52px rgba(5, 10, 28, 0.22);
}

.wofm-standards-lead-top {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.wofm-standards-lead-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.wofm-standards-lead-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--wofm-gold);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wofm-standards-lead-top span:last-child {
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wofm-standards-lead h3 {
  max-width: 18ch;
  color: var(--wofm-white);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.wofm-standards-lead p {
  max-width: 68ch;
  color: rgba(255,255,255,0.74);
  font-size: 1rem;
  line-height: 1.8;
}

.wofm-standards-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wofm-standards-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wofm-iso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.wofm-iso-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 30px 28px 28px;
  text-align: left;
  transition: var(--wofm-transition);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(4, 8, 24, 0.14);
}

.wofm-iso-card::before {
  content: none;
}

.wofm-iso-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 26px 50px rgba(0,0,0,0.22);
}

.wofm-iso-card .wofm-sector-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--wofm-transition);
}

.wofm-iso-card:hover .wofm-sector-icon {
  transform: translateY(-2px);
}

.wofm-iso-card .wofm-sector-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wofm-iso-card-quality .wofm-sector-icon {
  background: rgba(232,168,56,0.12);
  border-color: rgba(232,168,56,0.22);
}

.wofm-iso-card-quality .wofm-sector-icon svg {
  stroke: var(--wofm-gold);
}

.wofm-iso-card-food .wofm-sector-icon {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.18);
}

.wofm-iso-card-food .wofm-sector-icon svg {
  stroke: #8ee3a8;
}

.wofm-iso-card-environment .wofm-sector-icon {
  background: rgba(45,212,191,0.12);
  border-color: rgba(45,212,191,0.18);
}

.wofm-iso-card-environment .wofm-sector-icon svg {
  stroke: #6ee7d7;
}

.wofm-iso-card-safety .wofm-sector-icon {
  background: rgba(96,165,250,0.12);
  border-color: rgba(96,165,250,0.18);
}

.wofm-iso-card-safety .wofm-sector-icon svg {
  stroke: #93c5fd;
}

.wofm-iso-card h4 {
  color: rgba(255,255,255,0.62);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wofm-iso-card h5 {
  color: var(--wofm-white);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.wofm-iso-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

.wofm-iso-note {
  display: inline-flex;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.56);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Timeline ---------- */
.wofm-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.wofm-timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--wofm-gold), var(--wofm-teal));
  border-radius: 2px;
}

.wofm-timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 24px 32px;
  background: var(--wofm-white);
  border-radius: var(--wofm-radius);
  box-shadow: var(--wofm-shadow);
  transition: var(--wofm-transition);
}

.wofm-timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 32px;
  width: 16px; height: 16px;
  background: var(--wofm-gold);
  border: 3px solid var(--wofm-white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,168,56,0.2);
}

.wofm-timeline-item:hover {
  transform: translateX(8px);
  box-shadow: var(--wofm-shadow-lg);
}

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

.wofm-timeline-item p {
  color: var(--wofm-gray);
  font-size: var(--wofm-font-size-body);
}

/* ---------- Profile Viewer ---------- */
.wofm-profile-viewer {
  background: var(--wofm-off-white);
  border-radius: var(--wofm-radius);
  overflow: hidden;
  box-shadow: var(--wofm-shadow-lg);
  border: 1px solid var(--wofm-gray-light);
}

.wofm-profile-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--wofm-navy);
  color: var(--wofm-white);
}

.wofm-profile-toolbar h4 {
  font-size: 1rem;
  font-family: var(--wofm-font-heading);
}

.wofm-profile-embed {
  width: 100%;
  min-height: 80vh;
  border: none;
  display: block;
}

/* ---------- Footer ---------- */
.wofm-footer {
  background: var(--wofm-navy-dark);
  color: var(--wofm-white);
  padding: 60px 0 0;
}

.wofm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wofm-footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin-top: 16px;
  max-width: 320px;
}

.wofm-footer-brand img {
  width: auto;
  max-width: min(100%, 148px);
  max-height: 72px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.wofm-footer h5 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--wofm-white);
  margin-bottom: 20px;
}

.wofm-footer ul li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.wofm-footer ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  transition: var(--wofm-transition);
}

.wofm-footer ul li a:hover {
  color: var(--wofm-gold);
}

.wofm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.48);
}

.wofm-footer-bottom a {
  color: var(--wofm-gold);
}

.wofm-footer-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 22px;
  margin-top: 24px;
}

.wofm-footer-socials-title {
  color: rgba(255,255,255,0.54);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wofm-footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.wofm-footer-socials-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.74);
  font-size: 0.88rem;
  transition: var(--wofm-transition);
}

.wofm-footer-socials-links a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wofm-footer-socials-links a:hover {
  color: var(--wofm-gold);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* ---------- Back to Top ---------- */
.wofm-back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--wofm-gold);
  color: var(--wofm-navy-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--wofm-transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(232,168,56,0.4);
}

.wofm-back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.wofm-back-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232,168,56,0.5);
}

.wofm-back-top svg {
  width: 22px; height: 22px;
  stroke: var(--wofm-white);
  fill: none;
  stroke-width: 2.5;
}

/* ---------- Animations ---------- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 30px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* Particle dots in hero */
.wofm-particles {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.wofm-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(232,168,56,0.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ---------- About Page Hero ---------- */
.wofm-page-hero {
  padding: 128px 0 80px;
  background: linear-gradient(135deg, var(--wofm-navy) 0%, var(--wofm-navy-dark) 100%);
  text-align: center;
  color: var(--wofm-white);
  position: relative;
  overflow: hidden;
}

.about-page .wofm-page-hero {
  background-image: url('../../../../assets/images/operations/offshore.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.profile-page .wofm-page-hero {
  background-image: url('../../../../assets/images/operations/offshore-platform.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.wofm-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,94,0.85) 0%, rgba(14,18,64,0.75) 100%);
  z-index: 1;
}

.wofm-page-hero > * {
  position: relative;
  z-index: 2;
}

.wofm-page-hero::after {
  content: none; /* remove white haze in WOFM page hero */
}

.wofm-section-alt + .wofm-section .wofm-page-hero::after,
.wofm-page-hero + .wofm-section-alt::before {
  display: none;
}

.wofm-page-hero h1 {
  font-size: var(--wofm-font-size-h1);
  margin-bottom: 16px;
  animation: fadeSlideUp 0.6s ease both;
}

.wofm-page-hero p {
  font-size: var(--wofm-font-size-body);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}

/* Breadcrumb */
.wofm-breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  animation: fadeSlideUp 0.6s 0.1s ease both;
}

.wofm-breadcrumb a { color: var(--wofm-gold); }
.wofm-breadcrumb span { opacity: 0.5; }

.about-page .wofm-page-hero {
  background-image:
    radial-gradient(circle at 78% 28%, rgba(232,168,56,0.1) 0%, rgba(232,168,56,0) 24%),
    linear-gradient(108deg, rgba(6, 10, 33, 0.72) 0%, rgba(10, 16, 48, 0.58) 40%, rgba(11, 18, 56, 0.36) 100%),
    url('../../../../assets/images/corporate/about-hero.webp');
  background-size: cover;
  background-position: center;
  text-align: left;
}

.wofm-about-hero-copy {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.wofm-about-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 48px;
  align-items: end;
  margin-top: 34px;
}

.wofm-about-hero-copy .tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 0;
  color: var(--wofm-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wofm-about-hero-copy .tag::before {
  content: '';
  width: 42px;
  height: 1px;
  background: rgba(232,168,56,0.75);
}

.wofm-about-hero-copy h1 {
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 11ch;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5.6vw, 4.35rem);
  text-shadow: 0 18px 42px rgba(3, 8, 28, 0.32);
}

.wofm-about-hero-lead {
  max-width: 42ch;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  line-height: 1.75;
}

.wofm-about-hero-copy p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.wofm-about-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.wofm-about-hero-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.wofm-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.wofm-about-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 32px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%),
    linear-gradient(180deg, rgba(8, 14, 42, 0.72) 0%, rgba(10, 17, 50, 0.58) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 64px rgba(7, 13, 40, 0.34);
  backdrop-filter: blur(16px);
  text-align: left;
}

.wofm-about-hero-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(232,168,56,0.6), rgba(255,255,255,0));
}

.wofm-about-hero-panel-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.wofm-about-hero-panel-kicker {
  display: inline-block;
  color: var(--wofm-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wofm-about-hero-panel-head p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.96rem;
  line-height: 1.7;
}

.wofm-about-hero-panel-grid {
  display: grid;
  gap: 18px;
}

.wofm-about-hero-panel-grid div {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wofm-about-hero-panel-grid div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.wofm-about-hero-panel-grid small {
  color: rgba(232,168,56,0.82);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wofm-about-hero-panel-grid strong {
  display: block;
  color: var(--wofm-white);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.wofm-about-hero-panel-grid span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.wofm-about-hero-panel-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  gap: 6px;
}

.wofm-about-hero-panel-note strong {
  color: var(--wofm-white);
  font-size: 1rem;
}

.wofm-about-hero-panel-note span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-page .wofm-breadcrumb {
  justify-content: flex-start;
  margin-bottom: 10px;
}

.wofm-about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.wofm-about-story-media {
  position: relative;
}

.wofm-about-story-media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(26,31,94,0.16);
}

.wofm-about-story-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 220px;
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(26,31,94,0.08);
  box-shadow: 0 18px 40px rgba(26,31,94,0.12);
}

.wofm-about-story-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  color: var(--wofm-navy-dark);
  line-height: 1;
}

.wofm-about-story-card span {
  display: block;
  color: var(--wofm-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.wofm-about-governance-card {
  padding: 30px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,247,251,0.98) 100%);
  border: 1px solid rgba(26,31,94,0.08);
  box-shadow: 0 18px 40px rgba(26,31,94,0.08);
}

.wofm-about-governance-media {
  margin: -30px -28px 22px;
  height: 190px;
  overflow: hidden;
  background: #dae2ee;
}

.wofm-about-governance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wofm-about-governance-card h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--wofm-navy-dark);
  margin-bottom: 12px;
}

.wofm-about-governance-card p {
  color: var(--wofm-gray);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* ---------- Value Props ---------- */
.wofm-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wofm-value-card {
  text-align: center;
  padding: 44px 28px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
  border: none;
  transition: var(--wofm-transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,31,94,0.06);
}

.wofm-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--wofm-teal), var(--wofm-navy));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.wofm-value-card:hover::before { width: 100%; }

.wofm-value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,94,0.04), rgba(0,131,143,0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wofm-value-card:hover::after { opacity: 1; }

.wofm-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26,31,94,0.12);
}

.wofm-value-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,31,94,0.08), rgba(0,131,143,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.wofm-value-icon svg {
  width: 32px; height: 32px;
  stroke: var(--wofm-teal);
  fill: none;
  stroke-width: 1.8;
}

.wofm-value-card h3 {
  font-size: var(--wofm-font-size-h3);
  color: var(--wofm-navy-dark);
  margin-bottom: 10px;
}

.wofm-value-card p {
  color: var(--wofm-gray);
  font-size: var(--wofm-font-size-body);
}

/* ---------- Training list ---------- */
.wofm-training-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.wofm-training-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #d6deeb;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.wofm-training-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.wofm-training-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 48, 0.08) 8%, rgba(9, 15, 48, 0.66) 100%);
}

.wofm-training-visual-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(26,31,94,0.08);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.wofm-training-visual-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wofm-navy-dark);
  font-size: 1rem;
}

.wofm-training-visual-note span {
  color: #546173;
  line-height: 1.7;
  font-size: 0.94rem;
}

.wofm-training-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  max-width: none;
  margin: 0;
  align-content: start;
}

.wofm-training-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 1.05rem;
  transition: var(--wofm-transition);
}

.wofm-section-dark.wofm-section-training-light .wofm-training-item {
  background: rgba(255,255,255,0.84);
  color: var(--wofm-navy-dark);
  border: 1px solid rgba(26,31,94,0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.wofm-training-item:hover {
  background: rgba(232,168,56,0.1);
  transform: translateX(6px);
}

.wofm-section-dark.wofm-section-training-light .wofm-training-item:hover {
  background: rgba(232,168,56,0.14);
}

.wofm-section-dark.wofm-section-training-light .wofm-training-item svg {
  stroke: var(--wofm-teal);
}

.wofm-training-item svg {
  width: 18px; height: 18px;
  stroke: var(--wofm-gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}


/* ---------- Modern Image Cards ---------- */
.wofm-image-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(26,31,94,0.12);
  transition: var(--wofm-transition);
  background: var(--wofm-white);
}

.wofm-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(26,31,94,0.18);
}

.wofm-image-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wofm-image-card:hover .wofm-image-card-img {
  transform: scale(1.06);
}

.wofm-image-card-body {
  padding: 28px 24px;
  position: relative;
}

.wofm-image-card-body::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wofm-gold), transparent);
}

.wofm-image-card-body h3 {
  font-size: var(--wofm-font-size-h3);
  color: var(--wofm-navy-dark);
  margin-bottom: 8px;
}

.wofm-image-card-body p {
  color: var(--wofm-gray);
  font-size: var(--wofm-font-size-body);
  line-height: 1.7;
}

/* ---------- Sector Image Cards ---------- */
.wofm-sector-showcase {
  display: grid;
  gap: 30px;
}

.wofm-sector-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(4, 8, 28, 0.24);
}

.wofm-sector-feature-media {
  position: relative;
  min-height: 420px;
}

.wofm-sector-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 17, 52, 0.08) 0%, rgba(10, 17, 52, 0) 45%),
    linear-gradient(180deg, rgba(10, 17, 52, 0) 50%, rgba(10, 17, 52, 0.32) 100%);
}

.wofm-sector-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.wofm-sector-feature-content {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(232,168,56,0.14), transparent 32%),
    linear-gradient(180deg, rgba(17, 24, 72, 0.94) 0%, rgba(10, 16, 52, 0.98) 100%);
}

.wofm-sector-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--wofm-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wofm-sector-feature-content h3 {
  color: var(--wofm-white);
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 12ch;
}

.wofm-sector-feature-content p {
  color: rgba(255,255,255,0.76);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 44ch;
}

.wofm-sector-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wofm-sector-metric {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.wofm-sector-metric strong {
  display: block;
  color: var(--wofm-white);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.wofm-sector-metric span {
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.wofm-sector-modern-card {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 18px 42px rgba(6, 10, 30, 0.16);
}

.wofm-sector-modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,168,56,0.26);
  box-shadow: 0 24px 54px rgba(6, 10, 30, 0.24);
}

.wofm-sector-modern-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.wofm-sector-modern-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 34, 0.04) 0%, rgba(8, 12, 34, 0.3) 100%);
}

.wofm-sector-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.wofm-sector-modern-card:hover .wofm-sector-modern-image img {
  transform: scale(1.06);
}

.wofm-sector-modern-body {
  padding: 24px 24px 24px;
}

.wofm-sector-modern-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--wofm-gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.wofm-sector-modern-body h5 {
  color: var(--wofm-white);
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.wofm-sector-modern-body p {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.wofm-sector-modern-meta {
  display: inline-flex;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.66);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
}

.wofm-sector-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.wofm-sector-image-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 320px;
  cursor: pointer;
  transition: var(--wofm-transition);
}

.wofm-sector-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wofm-sector-image-card:hover img {
  transform: scale(1.08);
}

.wofm-sector-image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,18,64,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--wofm-transition);
}

.wofm-sector-image-card:hover .wofm-sector-image-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(14,18,64,0.92) 100%);
}

.wofm-sector-image-card-overlay h5 {
  font-size: 1.15rem;
  color: var(--wofm-white);
  margin-bottom: 6px;
  font-weight: 700;
}

.wofm-sector-image-card-overlay p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .wofm-hero {
    min-height: auto;
  }
  .wofm-hero-content {
    max-width: 760px;
    padding: 132px 24px 94px;
  }
  .wofm-hero h1 {
    font-size: clamp(2.3rem, 6vw, 3.4rem);
  }
  .wofm-hero-sub {
    max-width: 40rem;
  }
  .wofm-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: -24px;
  }
  #services .wofm-section-header h2 {
    max-width: 15ch;
  }
  .wofm-cta-panel {
    grid-template-columns: 1fr;
  }
  .wofm-about-story-grid,
  .wofm-about-governance-grid {
    grid-template-columns: 1fr;
  }
  .wofm-about-hero-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wofm-about-hero-copy h1,
  .wofm-about-hero-lead,
  .wofm-about-hero-copy p {
    max-width: none;
  }
  .wofm-about-story-card {
    right: 20px;
    bottom: 20px;
  }
  .wofm-split { grid-template-columns: 1fr; gap: 40px; }
  .wofm-footer-grid { grid-template-columns: 1fr 1fr; }
  .wofm-values-grid { grid-template-columns: 1fr 1fr; }
  .wofm-standards-lead h3 { max-width: none; }
  .wofm-sector-feature { grid-template-columns: 1fr; }
  .wofm-sector-feature-content h3 { max-width: none; }
  .wofm-sector-modern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .wofm-hamburger { display: flex; }
  .wofm-nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 360px;
    height: 100vh;
    background: var(--wofm-navy-dark);
    flex-direction: column;
    padding: 100px 32px 40px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    gap: 4px;
  }
  .wofm-nav-links.open { right: 0; }
  .wofm-nav-links a {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.05rem;
    border-radius: 8px;
  }
  .wofm-hero-content {
    padding: 122px 20px 84px;
  }
  .wofm-hero h1 {
    font-size: clamp(2rem, 8vw, 2.85rem);
    margin-bottom: 16px;
  }
  .wofm-hero-sub {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .wofm-hero-btns {
    gap: 12px;
  }
  .wofm-hero-btns .wofm-btn {
    width: 100%;
    justify-content: center;
  }
  .wofm-stats {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 24px);
    gap: 16px;
  }
  .wofm-stat {
    padding: 30px 22px;
  }
  .wofm-stat h3 {
    font-size: 2.15rem;
  }
  .wofm-stat p {
    min-height: auto;
  }
  .wofm-stat-note {
    max-width: none;
    font-size: 0.88rem;
  }
  .wofm-cta-panel {
    padding: 34px 28px;
    gap: 22px;
  }
  .wofm-about-hero-panel {
    max-width: 520px;
  }
  .wofm-about-hero-copy h1 {
    max-width: 12ch;
  }
  .wofm-about-hero-actions {
    width: 100%;
  }
  .wofm-about-hero-actions .wofm-btn {
    flex: 1 1 220px;
    justify-content: center;
  }
  .wofm-about-story-media img {
    min-height: 340px;
  }
  .wofm-about-story-card {
    position: static;
    max-width: none;
    margin-top: 18px;
  }
  .wofm-cta h2 {
    max-width: none;
    font-size: 2.15rem;
  }
  .wofm-cta p {
    font-size: 1rem;
    line-height: 1.75;
  }
  .wofm-cta-actions {
    min-width: 0;
    width: 100%;
  }
  #services .wofm-section-header {
    margin-bottom: 38px;
  }
  #services .wofm-section-header h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 7vw, 2.55rem);
  }
  #services .wofm-section-header p {
    font-size: 1rem;
    line-height: 1.75;
  }
  .wofm-services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .wofm-service-media {
    height: 220px;
  }
  .wofm-service-card-inner {
    padding: 26px 22px 22px;
  }
  .wofm-service-card h3 {
    font-size: 1.28rem;
  }
  .wofm-service-meta {
    font-size: 0.76rem;
  }
  .wofm-stat:not(:last-child)::after { display: none; }
  .wofm-values-grid { grid-template-columns: 1fr; }
  .wofm-footer-grid { grid-template-columns: 1fr; }
  .wofm-footer-socials { flex-direction: column; align-items: flex-start; }
  .wofm-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .wofm-training-shell { grid-template-columns: 1fr; }
  .wofm-training-list { grid-template-columns: 1fr; }
  .wofm-training-visual img { min-height: 320px; }
  .wofm-section { padding: 60px 0; }
  .wofm-standards-lead {
    padding: 28px 24px;
    border-radius: 22px;
  }
  .wofm-standards-tags {
    gap: 10px;
  }
  .wofm-standards-tags span {
    width: 100%;
    justify-content: center;
  }
  .wofm-sector-feature-media,
  .wofm-sector-feature-media img { min-height: 280px; }
  .wofm-sector-feature-content { padding: 30px 24px; }
  .wofm-sector-feature-content h3 { font-size: 2rem; }
  .wofm-sector-metrics { grid-template-columns: 1fr; }
  .wofm-sector-modern-grid { grid-template-columns: 1fr; }
  .wofm-sector-modern-image { height: 210px; }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .wofm-stats,
  .wofm-values-grid,
  .wofm-footer-grid,
  .wofm-training-list,
  .wofm-sector-modern-grid,
  .wofm-profile-highlight-grid,
  .wofm-profile-highlight-stats,
  .wofm-iso-grid,
  .wofm-about-governance-grid,
  .wofm-about-story-grid {
    grid-template-columns: 1fr;
  }

  .wofm-profile-highlight-feature,
  .wofm-profile-highlight-card,
  .wofm-purpose-intro,
  .wofm-purpose-card,
  .wofm-standards-lead,
  .wofm-cta-panel {
    padding: 22px;
  }

  .wofm-about-story-media img,
  .wofm-sector-feature-media img,
  .wofm-split-img img,
  .wofm-about-hero-image img,
  .wofm-training-visual img {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .wofm-hero-content {
    padding: 112px 16px 72px;
  }
  .wofm-hero h1 {
    font-size: 1.85rem;
  }
  .wofm-hero-sub {
    font-size: 0.96rem;
  }
  #services .wofm-section-header {
    margin-bottom: 32px;
  }
  #services .wofm-section-header h2 {
    max-width: none;
    font-size: 1.9rem;
  }
  #services .wofm-section-header p {
    font-size: 0.96rem;
  }
  .wofm-cta-panel {
    padding: 28px 20px;
  }
  .wofm-about-hero-panel {
    max-width: none;
    padding: 24px 20px;
  }
  .wofm-about-hero-meta {
    gap: 10px;
  }
  .wofm-about-hero-meta span {
    width: 100%;
    text-align: center;
  }
  .wofm-about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wofm-about-hero-actions .wofm-btn {
    width: 100%;
    justify-content: center;
  }
  .about-page .wofm-breadcrumb {
    justify-content: center;
  }
  .wofm-about-hero-panel-grid strong {
    font-size: 1.5rem;
  }
  .wofm-about-hero-copy h1 {
    max-width: none;
  }
  .wofm-about-hero-lead {
    font-size: 1.02rem;
  }
  .wofm-about-story-media img {
    min-height: 280px;
  }
  .wofm-about-governance-card,
  .wofm-about-standards-grid .wofm-iso-card {
    padding: 24px 20px;
  }
  .wofm-standards-lead {
    padding: 24px 20px;
  }
  .wofm-standards-lead h3 {
    font-size: 1.85rem;
  }
  .wofm-cta h2 {
    font-size: 1.9rem;
  }
  .wofm-stats {
    grid-template-columns: 1fr;
    width: calc(100% - 20px);
    gap: 14px;
    margin-top: 0;
  }
  .wofm-stat {
    padding: 26px 20px;
  }
  .wofm-stat-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }
  .wofm-stat h3 {
    font-size: 2rem;
  }
  .wofm-service-card-top {
    margin-bottom: 20px;
  }
  .wofm-service-number {
    min-width: 42px;
    height: 42px;
  }
  .wofm-service-icon {
    width: 54px;
    height: 54px;
  }
  .wofm-hero-btns { flex-direction: column; align-items: stretch; }
  .wofm-sector-modern-body {
    padding: 22px 20px 20px;
  }
  .wofm-scroll-hint {
    display: none;
  }
}

/* ---------- Scroll Hint ---------- */
.wofm-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
  animation: scrollBounce 2s ease-in-out infinite;
  text-decoration: none;
}
.wofm-scroll-hint svg {
  width: 22px; height: 22px;
  stroke: var(--wofm-gold);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 480px) {
  .wofm-nav-links {
    width: 100%;
    max-width: none;
    padding: 86px 22px 24px;
  }

  .wofm-nav-links a {
    font-size: 1rem;
    padding: 13px 16px;
  }

  .wofm-hero-content {
    padding: 110px 16px 72px;
  }

  .wofm-stats {
    grid-template-columns: 1fr;
    width: calc(100% - 16px);
    gap: 12px;
  }

  .wofm-stat {
    padding: 24px 18px;
  }

  .wofm-scroll-hint {
    display: none;
  }
}


/* ===== Dark Section Base ===== */

/* ===== Dark Section Base ===== */

.wofm-section.wofm-profile-highlights-dark {
  background: #0e1240;
  color: #e5e7eb;
  overflow: hidden;
}

.wofm-profile-highlights-shell {
  display: grid;
  gap: 22px;
}

.wofm-profile-highlights-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.wofm-profile-highlights-head .tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f8fafc;
}

.wofm-profile-highlights-head h2 {
  margin: 0 0 16px;
  color: #f8fafc;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.wofm-profile-highlights-head p {
  margin: 0 auto;
  max-width: 60ch;
  color: #9fb0c8;
  line-height: 1.8;
}

.wofm-profile-highlight-feature {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(148,163,184,0.18);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    rgba(28, 38, 74, 0.94);
  box-shadow: 0 28px 54px rgba(2, 6, 23, 0.24);
  overflow: hidden;
}

.wofm-profile-highlight-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(232,168,56,0.08), transparent 42%, rgba(38,166,154,0.08) 100%);
  pointer-events: none;
}

.wofm-profile-highlight-feature > * {
  position: relative;
  z-index: 1;
}

.wofm-profile-highlight-feature-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.wofm-profile-highlight-feature-top span:last-child {
  color: #cbd5e1;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wofm-profile-highlight-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,168,56,0.16);
}

.wofm-profile-highlight-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--wofm-gold);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wofm-profile-highlight-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.wofm-profile-highlight-feature-copy h3 {
  margin: 0 0 16px;
  max-width: 18ch;
  color: #f8fafc;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.wofm-profile-highlight-feature-copy p {
  margin: 0;
  max-width: 56ch;
  color: #a8b7cb;
  font-size: 1rem;
  line-height: 1.85;
}

.wofm-profile-highlight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wofm-profile-highlight-stat {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.16);
  background: rgba(18, 27, 54, 0.72);
}

.wofm-profile-highlight-stat strong {
  display: block;
  margin-bottom: 8px;
  color: #f8fafc;
  font-size: 1.55rem;
  line-height: 1;
}

.wofm-profile-highlight-stat span {
  display: block;
  color: #94a3b8;
  font-size: 0.78rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wofm-profile-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wofm-profile-highlight-card {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    rgba(26, 36, 68, 0.92);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.wofm-profile-highlight-card::before {
  content: "";
  position: absolute;
  inset: auto -12% 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,166,154,0.14), transparent 68%);
  pointer-events: none;
}

.wofm-profile-highlight-card:nth-child(even)::before {
  background: radial-gradient(circle, rgba(232,168,56,0.14), transparent 68%);
}

.wofm-profile-highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(191,219,254,0.28);
  box-shadow: 0 24px 46px rgba(2, 6, 23, 0.22);
}

.wofm-profile-highlight-card > * {
  position: relative;
  z-index: 1;
}

.wofm-profile-highlight-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.wofm-profile-highlight-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(148,163,184,0.16);
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.wofm-profile-highlight-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(38,166,154,0.16), rgba(38,166,154,0.04));
  border: 1px solid rgba(38,166,154,0.14);
}

.wofm-profile-highlight-card:nth-child(even) .wofm-profile-highlight-icon {
  background: linear-gradient(180deg, rgba(232,168,56,0.18), rgba(232,168,56,0.05));
  border-color: rgba(232,168,56,0.14);
}

.wofm-profile-highlight-icon svg {
  width: 24px;
  height: 24px;
  stroke: #e2e8f0;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wofm-profile-highlight-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.wofm-profile-highlight-card h3 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 1.18rem;
  line-height: 1.24;
}

.wofm-profile-highlight-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 34ch;
}

@media (max-width: 767px) {
  .wofm-purpose-shell {
    grid-template-columns: 1fr;
  }

  .wofm-purpose-intro {
    padding: 28px;
    border-radius: 24px;
    grid-template-columns: 1fr;
  }

  .wofm-purpose-points {
    margin-top: 22px;
    grid-column: 1;
    grid-row: auto;
  }

  .wofm-purpose-signal {
    margin-top: 20px;
    grid-column: 1;
  }

  .wofm-purpose-grid {
    grid-template-columns: 1fr;
  }

  .wofm-purpose-card {
    padding: 24px;
    border-radius: 22px;
  }

  .wofm-purpose-card h3 {
    max-width: none;
  }

  .wofm-profile-highlight-feature {
    padding: 24px;
    border-radius: 22px;
  }

  .wofm-profile-highlight-feature-top {
    margin-bottom: 18px;
  }

  .wofm-profile-highlight-feature-grid,
  .wofm-profile-highlight-grid,
  .wofm-profile-highlight-stats {
    grid-template-columns: 1fr;
  }

  .wofm-profile-highlight-card {
    padding: 22px;
    border-radius: 20px;
  }

  .wofm-profile-highlight-feature-copy h3,
  .wofm-profile-highlights-head h2,
  .wofm-profile-highlight-card p {
    max-width: none;
  }
}

/* Remove decorative icons from WOFM card components */
.wofm-stat-icon,
.wofm-service-icon,
.wofm-purpose-intro-icon,
.wofm-purpose-icon,
.wofm-standards-lead-icon,
.wofm-sector-icon,
.wofm-value-icon,
.wofm-profile-highlight-feature-icon,
.wofm-profile-highlight-icon {
  display: none !important;
}

/* ---------- WOFM Radius Reset ---------- */
:is(
  .wofm-btn,
  .wofm-nav-links a,
  .wofm-stat,
  .wofm-service-card,
  .wofm-service-card-inner,
  .wofm-why-card,
  .wofm-sector-card,
  .wofm-sector-modern-card,
  .wofm-sector-image-card,
  .wofm-sector-image-card-overlay,
  .wofm-split-img,
  .wofm-split-img img,
  .wofm-page-hero,
  .wofm-about-hero-panel,
  .wofm-about-story-media img,
  .wofm-about-story-card,
  .wofm-about-governance-card,
  .wofm-purpose-intro,
  .wofm-purpose-point,
  .wofm-purpose-card,
  .wofm-purpose-icon,
  .wofm-standards-lead,
  .wofm-iso-card,
  .wofm-training-item,
  .wofm-social-card,
  .wofm-cta-panel,
  .wofm-profile-highlight-feature,
  .wofm-profile-highlight-card,
  .wofm-profile-viewer,
  .wofm-profile-viewer-frame,
  .wofm-profile-viewer-frame iframe,
  .wofm-about-hero-meta span
) {
  border-radius: 0 !important;
}
