@import url("../../../shared/css/design-tokens.css");

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-primary: var(--wg-font-primary);
  --navbar-height: var(--wg-header-height);
  --content-width: var(--wg-content-width);
  --ink-950: #08192d;
  --ink-900: #002a5c;
  --ink-800: #0a3d7a;
  --sand-50: #f4f7fb;
  --sand-100: #e7edf6;
  --sand-200: #ced8e8;
  --stone-50: #f8fbff;
  --stone-100: #edf2f8;
  --stone-200: #d5deea;
  --stone-400: #6e7f97;
  --stone-600: #4d5f76;
  --white: #ffffff;
  --gold: #c8a020;
  --gold-strong: #e0b63a;
  --teal: #0a3d7a;
  --success: #5c8b63;
  --shadow-sm: var(--wg-shadow-sm);
  --shadow-md: var(--wg-shadow-lg);
  --shadow-lg: var(--wg-shadow-xl);
  --border: rgba(23, 49, 74, 0.1);
  --radius-sm: var(--wg-radius-xl);
  --radius-md: calc(var(--wg-radius-xl) + 8px);
  --radius-lg: calc(var(--wg-radius-xl) + 20px);
  --transition: var(--wg-transition-smooth);
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--wg-font-size-base);
  font-weight: 400;
  background:
    radial-gradient(circle at top left, rgba(200, 160, 32, 0.1), transparent 22%),
    radial-gradient(circle at 85% 8%, rgba(10, 61, 122, 0.08), transparent 20%),
    linear-gradient(180deg, #fbfdff 0%, #eef3f9 100%);
  color: var(--ink-950);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding-top: var(--navbar-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(16, 34, 53, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 34, 53, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wg-font-heading);
  color: var(--ink-950);
  line-height: var(--wg-line-height-tight);
  font-weight: var(--wg-font-weight-bold);
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--wg-font-size-3xl);
}
h1 {
  font-size: var(--wg-font-size-4xl);
  font-weight: var(--wg-font-weight-bold);
}

p {
  font-size: var(--wg-font-size-base);
  color: var(--stone-600);
  line-height: var(--wg-line-height-normal);
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  position: relative;
}

.container {
  width: min(100% - 36px, var(--content-width));
  margin: 0 auto;
}

.eyebrow,
.section-heading .subtitle,
.clients-label,
.meta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal);
}

.eyebrow::before,
.section-heading .subtitle::before,
.meta-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.section-heading {
  max-width: 720px;
  margin: 0 0 34px;
  text-align: left;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 14px 0 14px;
  font-size: clamp(1.95rem, 3.5vw, 2.75rem);
}

.section-heading.light h2,
.section-heading.light p,
.section-heading.light .subtitle {
  color: var(--white);
}

.section-heading.light .subtitle::before {
  background: rgba(255, 255, 255, 0.55);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 42, 92, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--ink-950);
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 16px 40px rgba(197, 164, 91, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 22px 48px rgba(197, 164, 91, 0.38);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--ink-950);
}

.btn-dark-outline {
  color: var(--ink-900);
  border-color: rgba(23, 49, 74, 0.22);
  background: rgba(255, 255, 255, 0.7);
}

.btn-dark-outline:hover {
  border-color: var(--ink-900);
  background: var(--ink-900);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 8px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(9, 31, 52, 0.08);
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 25, 45, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-brand img {
  width: auto;
  height: 74px;
}

.navbar-brand-text p:first-child {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-950);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar-brand-text p:last-child {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: rgba(8, 25, 45, 0.58);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  color: rgba(8, 25, 45, 0.76);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(10, 61, 122, 0.08);
  color: var(--ink-950);
}

.nav-links a.active {
  box-shadow: inset 0 0 0 1px rgba(197, 164, 91, 0.35);
}
.menu-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: 0;
}

.menu-toggle svg {
  stroke: var(--ink-950);
}

.mobile-menu {
  display: none;
  padding: 18px 24px 24px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(8, 25, 45, 0.08);
}

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

.mobile-menu a {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: block;
  padding: 14px 0;
  color: rgba(8, 25, 45, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu a.active {
  color: var(--gold-strong);
}

.contact-popover-shell {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
}

.contact-popover-shell.is-open {
  pointer-events: auto;
}

.contact-popover-card {
  position: absolute;
  top: 98px;
  right: 24px;
  width: min(420px, calc(100vw - 32px));
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 34, 53, 0.98), rgba(12, 27, 43, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-popover-shell.is-open .contact-popover-card {
  opacity: 1;
  transform: translateY(0);
}

.contact-popover-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.contact-popover-kicker {
  margin-bottom: 10px;
  color: rgba(223, 188, 113, 0.92);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-popover-title {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.contact-popover-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-popover-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-popover-link {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.contact-popover-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(223, 188, 113, 0.28);
}

.contact-popover-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-popover-link strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.45;
}

.contact-popover-link--soft strong {
  color: rgba(255, 255, 255, 0.9);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 200;
}

.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.hero,
.about-hero,
.page-hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink-950);
  margin-top: calc(-1 * var(--navbar-height));
}

.about-hero,
.page-hero {
  min-height: 68vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img,
.about-hero .hero-bg img,
.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.88);
}

.hero-slide img {
  transform: scale(1);
}

.hero-slide.is-contained-image {
  background-position: center;
  background-size: cover;
}

.hero-slide.is-contained-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 53, 0.18);
  backdrop-filter: blur(18px);
}

.hero-slide.is-contained-image img {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  object-fit: contain;
  padding: 28px min(8vw, 120px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(16, 34, 53, 0.56) 8%, rgba(16, 34, 53, 0.24) 52%, rgba(47, 109, 114, 0.08) 100%);
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-arrow-prev {
  left: 22px;
}

.hero-arrow-next {
  right: 22px;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider-dot.is-active {
  width: 34px;
  background: var(--gold-strong);
  border-color: var(--gold-strong);
}

.about-hero .hero-overlay {
  background:
    linear-gradient(105deg, rgba(8, 25, 45, 0.46) 8%, rgba(8, 25, 45, 0.22) 48%, rgba(8, 25, 45, 0.08) 100%);
}

.hero::before,
.about-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 164, 91, 0.18), transparent 68%);
  pointer-events: none;
}

.hero::after,
.about-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 12% 8% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 88px;
}

.hero-content {
  padding: 56px 0 130px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: 26px;
  align-items: end;
}

.hero-copy,
.page-hero-copy {
  max-width: 700px;
}

.hero-copy-slide {
  display: none;
}

.hero-copy-slide.is-active {
  display: block;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
  max-width: 100%;
  font-size: clamp(2.2rem, 4.2vw, 3.55rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4.3vw, 3.8rem);
  line-height: 0.92;
}

.hero h1 strong,
.page-hero h1 strong {
  color: var(--gold-strong);
}

.about-hero .page-hero-copy h1 {
  color: rgba(255, 255, 255, 0.98);
}

.about-hero .page-hero-copy p {
  color: rgba(255, 255, 255, 0.92);
}

.hero-tagline {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-desc,
.page-hero-copy p {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.94rem, 0.98vw, 1.02rem);
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}

.hero-trust-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  max-width: 620px;
}

.hero-trust-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.hero-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-strong);
}

.hero-panel,
.page-hero-panel {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.hero-panel h3,
.page-hero-panel h3 {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.hero-panel p,
.page-hero-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-panel-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-panel-sectors span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.45rem 0.72rem;
  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.88);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.hero-panel-stat {
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.hero-panel-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel-stat strong {
  display: block;
  color: var(--gold-strong);
  font-size: 1.24rem;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-panel-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  inset: auto auto 28px 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-strong);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  55%,
  100% {
    transform: translateY(100%);
  }
}

@keyframes heroFade {
  0%, 100% {
    opacity: 0;
  }
  6%, 46% {
    opacity: 1;
  }
  56% {
    opacity: 0;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }

.stats-band {
  padding: 0 0 28px;
  margin-top: -58px;
  z-index: 2;
}

.assurance-strip {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  padding-bottom: 18px;
}

.assurance-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.assurance-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 249, 0.98));
  box-shadow: 0 18px 42px rgba(9, 27, 43, 0.1);
  border: 1px solid rgba(16, 34, 53, 0.08);
}

.assurance-card h3 {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-900);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(23, 49, 74, 0.07);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(0, 42, 92, 0.14);
}

.stat-value {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--stone-400);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.stat-icon {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
}

.intro-section,
.story-section,
.profile-summary,
.services-section,
.values-section,
.vision-section,
.capability-section,
.sector-section,
.pride-section,
.clients-section,
.profile-page {
  padding: 82px 0;
}

.intro-grid,
.story-grid,
.capability-grid,
.pride-grid,
.profile-grid,
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.intro-card,
.story-card,
.profile-card,
.feature-panel,
.profile-download-card,
.profile-side-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.intro-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.94));
  border: 1px solid rgba(23, 49, 74, 0.08);
  box-shadow: 0 18px 40px rgba(0, 42, 92, 0.08);
}

.intro-list,
.profile-list,
.detail-list,
.pride-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.intro-list li,
.profile-list li,
.detail-list li,
.pride-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-900);
  font-size: 0.94rem;
}

.intro-list li,
.detail-list li {
  gap: 14px;
}

.intro-list li span,
.detail-list li span {
  display: block;
  margin-top: 4px;
  color: var(--stone-600);
  line-height: 1.72;
}

.intro-list li strong,
.detail-list li strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.94rem;
  line-height: 1.35;
}

.intro-list li::before,
.profile-list li::before,
.detail-list li::before,
.pride-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  flex: 0 0 auto;
}

.intro-list {
  gap: 18px;
  margin-top: 26px;
}

.detail-list {
  gap: 0;
  margin-top: 24px;
}

.detail-list li {
  padding: 18px 0;
  border-top: 1px solid rgba(23, 49, 74, 0.08);
}

.detail-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.intro-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.intro-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 61, 122, 0.06);
  border: 1px solid rgba(10, 61, 122, 0.09);
  color: var(--ink-900);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-image,
.pride-image-wrapper img,
.capability-image,
.profile-image,
.service-detail-image img,
.about-visual img,
.profile-hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.story-image,
.capability-image,
.profile-image,
.service-detail-image img,
.about-visual img,
.profile-hero-image {
  min-height: 100%;
  height: 100%;
}

.about-hero-shell,
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  max-width: 860px;
}

.about-hero-highlights {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.about-hero-highlights li {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero .about-hero-highlights li {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(6, 21, 37, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-hero .page-hero-panel {
  background: linear-gradient(180deg, rgba(10, 27, 46, 0.78), rgba(10, 27, 46, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero-panel .detail-list {
  margin-top: 18px;
}

.page-hero-panel .detail-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.hero-disclosure {
  margin-top: 18px;
  max-width: 560px;
  padding: 0;
  border-radius: 16px;
  background: rgba(6, 21, 37, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.hero-disclosure summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-disclosure summary::-webkit-details-marker {
  display: none;
}

.hero-disclosure summary::after {
  content: "+";
  float: right;
  color: var(--gold-strong);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-disclosure[open] summary::after {
  content: "-";
}

.hero-disclosure-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.hero-disclosure-list li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.services-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(200, 160, 32, 0.07), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(231, 237, 246, 0.72) 100%);
}

.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.service-tab {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 74, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-tab.active,
.service-tab:hover {
  color: var(--white);
  background: var(--ink-900);
  border-color: var(--ink-900);
  box-shadow: 0 14px 28px rgba(0, 42, 92, 0.18);
}

.service-tab.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  transform-origin: left center;
  animation: serviceTabProgress 4.6s linear forwards;
}

@keyframes serviceTabProgress {
  from { transform: scaleX(0); opacity: 0.72; }
  to { transform: scaleX(1); opacity: 1; }
}

.service-detail {
  display: none;
}

.service-detail.active {
  display: block;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.service-detail-inner.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-detail-image {
  border-radius: var(--radius-lg);
  height: 360px;
  overflow: hidden;
}

.service-detail-image.is-contained-image {
  position: relative;
  background-position: center;
  background-size: cover;
}

.service-detail-image.is-contained-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 53, 0.16);
  backdrop-filter: blur(14px);
}

.service-detail-image img {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  transition: transform 0.9s ease;
}

.service-detail-image.is-contained-image img {
  box-sizing: border-box;
  object-fit: contain;
  padding: 8px;
}

.service-detail:hover .service-detail-image img {
  transform: scale(1.04);
}

.service-detail:hover .service-detail-image.is-contained-image img {
  transform: scale(1.02);
}

.service-detail-content {
  padding: 18px 0;
}

.service-detail-content h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.service-features {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  border: 1px solid var(--border);
  color: var(--ink-900);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-feature-item:hover {
  transform: translateX(6px);
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
}

.parallax-cta {
  padding: 96px 0;
  text-align: center;
}

.parallax-cta .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: brightness(0.92) contrast(1.02) saturate(1.02);
}

.parallax-cta .hero-overlay {
  background: linear-gradient(120deg, rgba(16, 34, 53, 0.24), rgba(23, 49, 74, 0.12));
}

.parallax-cta .container {
  position: relative;
  z-index: 2;
}

.cert-badges,
.mini-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.cert-badge,
.mini-badge {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cert-badge {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.mini-badge {
  color: var(--ink-900);
  border: 1px solid rgba(23, 49, 74, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.pride-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(231, 237, 246, 0.72) 100%);
}

.pride-image-wrapper {
  position: relative;
}

.pride-image-wrapper img {
  height: 460px;
}

.pride-badge {
  position: absolute;
  inset: auto 24px 24px auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(16, 34, 53, 0.88);
  color: var(--white);
  min-width: 190px;
}

.pride-badge .stat-value,
.metric-card .stat-value {
  color: var(--gold-strong);
  margin-bottom: 6px;
}

.vision-grid,
.values-grid,
.sector-grid,
.highlight-grid,
.metric-grid,
.profile-highlight-grid {
  display: grid;
  gap: 24px;
}

.values-grid,
.sector-grid,
.highlight-grid,
.profile-highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vision-grid,
.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vision-item,
.value-card,
.sector-card,
.highlight-card,
.metric-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.vision-item:hover,
.value-card:hover,
.sector-card:hover,
.highlight-card:hover,
.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.vision-item,
.highlight-card,
.metric-card {
  padding: 22px;
}

.vision-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(197, 164, 91, 0.15), rgba(47, 109, 114, 0.16));
}

.vision-icon svg {
  stroke: var(--ink-900);
}

.value-card-img {
  height: 240px;
  overflow: hidden;
}

.sector-card-img {
  height: 190px;
  overflow: hidden;
}

.value-card-img img,
.sector-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.value-card:hover .value-card-img img,
.sector-card:hover .sector-card-img img {
  transform: scale(1.03);
}

.value-card-body,
.sector-card-body {
  padding: 20px;
}

.value-card-body h3,
.sector-card-body h3,
.highlight-card h3,
.metric-card h3,
.vision-item h3 {
  font-size: 1.14rem;
  margin-bottom: 10px;
}

.operating-model-section {
  padding: 0 0 110px;
}

.operating-model-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  padding: 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(200, 160, 32, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(8, 25, 45, 0.98), rgba(10, 61, 122, 0.96));
  box-shadow: var(--shadow-lg);
}

.operating-model-copy .subtitle,
.decision-band-shell .subtitle {
  color: rgba(255, 255, 255, 0.74);
}

.operating-model-copy .subtitle::before,
.decision-band-shell .subtitle::before {
  background: rgba(255, 255, 255, 0.48);
}

.operating-model-copy h2,
.operating-model-copy p {
  color: var(--white);
}

.operating-model-copy p {
  max-width: 56ch;
}

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

.operating-model-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.operating-model-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: var(--ink-950);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.operating-model-card h3 {
  color: var(--white);
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.operating-model-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.decision-band {
  padding: 0 0 110px;
}

.decision-band-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  padding: 28px 30px;
  border: 1px solid rgba(10, 61, 122, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.decision-band-shell h2 {
  max-width: 14ch;
}

.decision-band-points {
  display: grid;
  gap: 16px;
}

.decision-band-intro {
  margin-top: 16px;
  max-width: 54ch;
}

.decision-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.decision-point {
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 61, 122, 0.04), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(10, 61, 122, 0.08);
}

.decision-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 0.94rem;
}

.decision-point span {
  color: var(--stone-600);
  font-size: 0.9rem;
  line-height: 1.72;
}

.buyer-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.buyer-need-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(10, 61, 122, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.buyer-need-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 0.94rem;
}

.buyer-need-card p {
  font-size: 0.9rem;
}

.procurement-proof-section {
  padding: 0 0 110px;
}

.procurement-proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.procurement-proof-copy,
.procurement-proof-panel {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(10, 61, 122, 0.1);
  box-shadow: var(--shadow-md);
}

.procurement-proof-copy {
  background:
    radial-gradient(circle at top right, rgba(200, 160, 32, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 252, 0.96));
}

.procurement-proof-copy h2 {
  margin: 14px 0;
  max-width: 15ch;
}

.procurement-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.procurement-proof-metrics strong {
  display: block;
  color: var(--ink-900);
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.procurement-proof-metrics span {
  color: var(--stone-600);
  font-size: 0.86rem;
}

.procurement-proof-panel {
  background: linear-gradient(135deg, rgba(8, 25, 45, 0.98), rgba(10, 61, 122, 0.96));
  color: var(--white);
}

.procurement-proof-kicker {
  color: rgba(255, 255, 255, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.procurement-proof-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.procurement-proof-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.procurement-proof-note {
  color: rgba(255, 255, 255, 0.72);
}

.clients-section {
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(244, 247, 251, 0.56));
}

.clients-label {
  margin-bottom: 18px;
}

.clients-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.client-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: var(--transition);
  opacity: 0.82;
}

.client-logo-card:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 1;
}

.client-logo-card img {
  display: block;
  max-width: min(100%, 118px);
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-logo-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.profile-page {
  padding-top: 150px;
}

.profile-layout {
  align-items: start;
}

.profile-download-card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(200, 160, 32, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 252, 0.88));
}

.profile-document-shell {
  min-height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.profile-document-badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(10, 61, 122, 0.07);
  color: var(--ink-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.profile-document-logo {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
}

.profile-document-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  margin-bottom: 8px;
}

.profile-document-copy p {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.profile-doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.profile-doc-meta span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(23, 49, 74, 0.06);
  color: var(--ink-900);
  font-size: 0.8rem;
  font-weight: 700;
}

.profile-summary-panel {
  padding: 18px 8px 18px 12px;
}

.profile-summary-panel h2 {
  font-size: clamp(1.95rem, 3.5vw, 2.75rem);
  margin: 10px 0 16px;
}

.profile-summary-text {
  font-size: 0.98rem;
  color: var(--ink-700);
  line-height: 1.7;
  max-width: 620px;
}

.profile-checklist {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.profile-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink-900);
  font-size: 0.95rem;
}

.profile-checklist li::before {
  content: "✓";
  color: #1b8f37;
  font-weight: 800;
  line-height: 1;
  margin-top: 3px;
}

.profile-signal-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.profile-signal-band span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 61, 122, 0.06);
  color: var(--ink-900);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-viewer-section {
  padding-top: 72px;
}

.pdf-viewer-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pdf-viewer {
  width: 100%;
  height: 820px;
  border: 0;
  border-radius: calc(var(--radius-md) - 8px);
  background: var(--stone-100);
}

.footer {
  padding: 78px 0 0;
  background:
    radial-gradient(circle at top right, rgba(200, 160, 32, 0.14), transparent 24%),
    linear-gradient(180deg, #102235 0%, #0c1b2b 100%);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 36px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 420px;
}

.footer-brand img {
  width: auto;
  max-width: min(100%, 148px);
  max-height: 72px;
  object-fit: contain;
  border-radius: 0;
  display: block;
  margin-bottom: 18px;
  box-shadow: none;
  filter: brightness(0) invert(1);
}

.footer-eyebrow {
  margin-bottom: 10px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer h4 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer p,
.footer-contact li,
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 10px;
}

.footer-links a:hover {
  color: var(--gold-strong);
}

.footer-links a,
.footer-contact span,
.footer-contact a,
.footer-group-link {
  transition: color var(--transition);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg {
  flex: 0 0 auto;
  margin-top: 4px;
  stroke: var(--gold-strong);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a:hover,
.footer-group-link:hover {
  color: var(--gold-strong);
}

.footer-bottom {
  padding: 22px 0;
  text-align: left;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.86rem;
  margin: 0;
}

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

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

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

.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.72);
  font-size: 0.88rem;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition);
}

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

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

.footer-group-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-900);
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 90;
}

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

.back-to-top:hover {
  background: var(--teal);
}

@media (max-width: 1080px) {
  .hero-shell,
  .about-hero-shell,
  .page-hero-shell,
  .intro-grid,
  .story-grid,
  .capability-grid,
  .pride-grid,
  .profile-layout,
  .profile-grid,
  .service-detail-inner,
  .service-detail-inner.reverse {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .values-grid,
  .vision-grid,
  .sector-grid,
  .highlight-grid,
  .metric-grid,
  .profile-highlight-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel,
  .page-hero-panel {
    max-width: 560px;
  }

  .operating-model-shell,
  .decision-band-shell {
    grid-template-columns: 1fr;
  }

  .assurance-strip {
    margin-top: 0;
    padding-top: 22px;
  }

  .assurance-strip-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .page-hero-content {
    padding: 72px 0;
  }

  .hero-content {
    padding-bottom: 72px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--content-width));
  }

  .contact-popover-card {
    top: 82px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .nav-links {
    display: none;
  }

  .navbar-brand-text {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar-brand img {
    height: 62px;
  }

  .hero-content,
  .page-hero-content {
    padding: 38px 0 56px;
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero,
  .about-hero,
  .page-hero {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 2rem;
    line-height: 0.98;
  }

  .hero-desc,
  .page-hero-copy p {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn,
  .hero-buttons .btn {
    width: 100%;
  }

  .hero-trust-list {
    max-width: 100%;
  }

  .hero-panel,
  .page-hero-panel {
    padding: 22px;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stats-band {
    margin-top: 0;
    padding-top: 18px;
  }

  .assurance-card {
    padding: 20px;
  }

  .stats-grid,
  .values-grid,
  .vision-grid,
  .sector-grid,
  .highlight-grid,
  .metric-grid,
  .profile-highlight-grid,
  .footer-grid,
  .operating-model-grid,
  .buyer-needs-grid {
    grid-template-columns: 1fr;
  }

  .procurement-proof-shell,
  .procurement-proof-metrics,
  .procurement-proof-logos {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials {
    flex-direction: column;
    align-items: flex-start;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.95rem;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .clients-logos {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .client-logo-card {
    flex: 0 0 auto;
  }

  .client-logo-card img {
    max-width: 110px;
    max-height: 24px;
  }

  .service-detail-image,
  .pride-image-wrapper img {
    min-height: 320px;
    height: 320px;
  }

  .operating-model-shell,
  .decision-band-shell {
    padding: 28px;
  }

  .footer {
    padding-top: 60px;
  }

  .pdf-viewer {
    height: 560px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--content-width));
  }

  .contact-popover-card {
    top: 78px;
    right: 14px;
    left: 14px;
    padding: 20px;
  }

  .hero h1,
  .page-hero h1,
  .wccs-home .hero h1 {
    font-size: 1.72rem;
    line-height: 1.02;
  }

  .hero-desc,
  .page-hero-copy p,
  p {
    font-size: 0.92rem;
  }

  .hero-panel,
  .page-hero-panel,
  .intro-card,
  .story-card,
  .feature-panel,
  .profile-download-card,
  .pdf-viewer-card {
    padding: 18px;
  }

  .btn,
  .hero-buttons .btn,
  .profile-actions .btn,
  .cta-buttons .btn {
    min-height: 48px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .pdf-viewer {
    height: 440px;
  }
}

/* Homepage differentiation: WCCS as structured operations/procurement */
.wccs-home .container {
  width: min(100% - 36px, var(--content-width));
}

.wccs-home .navbar .container,
.wccs-home .hero .container {
  width: min(100% - 36px, var(--content-width));
}

.wccs-home .section-heading {
  max-width: 980px;
}

.wccs-home .hero-shell {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 100%;
}

.wccs-home .intro-grid,
.wccs-home .procurement-proof-shell,
.wccs-home .operating-model-shell,
.wccs-home .decision-band-shell,
.wccs-home .pride-grid {
  width: 100%;
}

.wccs-home .hero-copy,
.wccs-home .intro-card,
.wccs-home .stat-card,
.wccs-home .sector-card,
.wccs-home .operating-model-card,
.wccs-home .decision-point,
.wccs-home .client-logo-card {
  border-radius: 18px;
}

.wccs-home .hero-copy {
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.wccs-home .hero {
  min-height: 64vh;
  overflow: hidden;
}

.wccs-home .hero::before,
.wccs-home .hero::after {
  display: none;
}

.wccs-home .hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 25, 45, 0.18) 0%, rgba(8, 25, 45, 0.36) 100%);
}

.wccs-home .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 54vh;
  padding: 88px 0 112px;
}

.wccs-home .hero-copy-slide {
  min-height: 0;
}

.wccs-home .hero h1 {
  max-width: 16ch;
  margin: 0 auto 14px;
  font-size: clamp(2.45rem, 4.9vw, 4.2rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.wccs-home .hero-desc {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  line-height: 1.46;
}

.wccs-home .hero-buttons {
  justify-content: center;
  margin-top: 22px;
}

.wccs-home .hero-slider-dots {
  margin-top: 12px;
}

.wccs-home .hero-panel,
.wccs-home .operating-model-shell,
.wccs-home .decision-band-shell,
.wccs-home .service-detail,
.wccs-home .sector-card,
.wccs-home .pride-image-wrapper img {
  border-radius: 20px;
}

.wccs-home .assurance-strip,
.wccs-home .stats-band,
.wccs-home .services-section,
.wccs-home .sector-section,
.wccs-home .clients-section {
  position: relative;
}

.wccs-home .assurance-strip::before,
.wccs-home .stats-band::before,
.wccs-home .services-section::before,
.wccs-home .sector-section::before,
.wccs-home .clients-section::before {
  content: "";
  position: absolute;
  inset: 22px 18px;
  border: 1px solid rgba(10, 61, 122, 0.08);
  border-radius: 28px;
  pointer-events: none;
}

.wccs-home .stats-band .container,
.wccs-home .services-section .container,
.wccs-home .sector-section .container,
.wccs-home .clients-section .container {
  position: relative;
  z-index: 1;
}

.wccs-home .stats-grid {
  gap: 18px;
  overflow: visible;
  background: transparent;
  border: 0;
}

.wccs-home .stat-card {
  min-height: 146px;
  padding: 28px 22px 22px;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 8px 18px rgba(0, 42, 92, 0.08);
  border: 1px solid rgba(23, 49, 74, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.wccs-home .service-tabs {
  gap: 10px;
  justify-content: flex-start;
}

.wccs-home .service-tab {
  border-radius: 12px;
  padding: 14px 18px;
}

.wccs-home .sector-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.wccs-home .sector-card:first-child {
  grid-row: span 2;
}

.wccs-home .sector-card:first-child .sector-card-img {
  height: 100%;
  min-height: 100%;
}

.wccs-home .client-logo-card {
  padding: 14px 18px;
  border: 1px solid rgba(10, 61, 122, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1080px) {
  .wccs-home .container {
    width: min(100% - 32px, var(--content-width));
  }

  .wccs-home .hero-content {
    min-height: 50vh;
    padding: 76px 0 98px;
  }

  .wccs-home .hero-shell,
  .wccs-home .sector-grid {
    grid-template-columns: 1fr;
  }

  .wccs-home .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 5vw, 3.65rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .wccs-home .hero-arrow {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero-arrow {
    top: auto;
    bottom: 22px;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .hero-arrow-prev {
    left: 16px;
  }

  .hero-arrow-next {
    right: 16px;
  }

  .wccs-home .hero-content {
    min-height: auto;
    padding: 62px 0 96px;
  }

  .wccs-home .hero-copy-slide {
    min-height: 0;
  }

  .wccs-home .hero-copy,
  .wccs-home .hero-shell {
    min-width: 0;
  }

  .wccs-home .hero h1 {
    max-width: 100%;
    font-size: 1.86rem;
    line-height: 1.08;
    text-wrap: balance;
  }

  .wccs-home .hero-desc {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .wccs-home .hero-buttons {
    margin-top: 24px;
    gap: 12px;
  }

  .wccs-home .hero-buttons .btn {
    min-height: 52px;
    white-space: normal;
    line-height: 1.35;
    padding-inline: 18px;
  }

  .wccs-home .hero-slider-dots {
    margin-top: 18px;
  }

  .wccs-home .stats-grid {
    gap: 14px;
  }

  .wccs-home .stat-card {
    min-height: 0;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .wccs-home .hero {
    min-height: auto;
  }

  .wccs-home .hero h1 {
    font-size: 1.7rem;
    line-height: 1.04;
  }

  .wccs-home .hero-desc {
    font-size: 0.92rem;
  }

  .wccs-home .hero-content {
    padding: 54px 0 92px;
  }

  .hero-arrow {
    bottom: 20px;
    width: 42px;
    height: 42px;
    font-size: 1.65rem;
  }

  .hero-arrow-prev {
    left: 14px;
  }

  .hero-arrow-next {
    right: 14px;
  }

  .wccs-home .hero-slider-dots {
    margin-top: 16px;
  }
}
