/*
Theme Name: OLYVENRA Global Impact Corporate v33.6
Theme URI: https://olyvenra.com
Author: OLYVENRA LTD
Description: Multilingual corporate website for OLYVENRA LTD.
Version: 33.6
Text Domain: olyvenra
*/

:root {
  --navy-950: #03131e;
  --navy-900: #051c2b;
  --navy-800: #0a2a3e;
  --navy-700: #123d55;
  --gold-500: #cda94a;
  --gold-400: #dfc36d;
  --ink: #102334;
  --slate: #526577;
  --muted: #9db0bf;
  --line-dark: rgba(215, 178, 67, .18);
  --line-light: #d8e1e8;
  --white: #fff;
  --surface: #f5f7f9;
  --surface-warm: #f8fafb;
  --surface-quiet: #eef3f6;
  --success: #2f7d4c;
  --danger: #a54343;
  --shadow-sm: 0 10px 30px rgba(3, 19, 30, .08);
  --shadow-lg: 0 24px 70px rgba(3, 19, 30, .18);
  --radius: 2px;
  --container: 1240px;
  --topbar-height: 0px;
  --site-header-height: 82px;
  --header-safe: calc(var(--topbar-height) + var(--site-header-height));
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-safe);
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), 90vw); margin: 0 auto; }
section[id], .hero { scroll-margin-top: 0; }
main > section { position: relative; }
main > section > .container > br { display: none; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200000;
  padding: 12px 18px;
  transform: translateY(-170%);
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }

/* Header */
.topbar {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100000;
  height: var(--topbar-height);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(215, 178, 67, .16);
  color: #ced9e1;
  font-size: 12px;
  letter-spacing: 0;
}
.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  white-space: nowrap;
  overflow: hidden;
}
.topbar span { overflow: hidden; text-overflow: ellipsis; }
.topbar .contact-link { text-decoration: none; }
.whatsapp-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  color: #69d89a;
  font-weight: 800;
}
.whatsapp-link span {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.whatsapp-link span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 4px;
  top: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-35deg);
}
.whatsapp-link span::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 0;
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(20deg);
}
.whatsapp-link.compact {
  display: inline-flex !important;
  font-size: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  min-height: var(--site-header-height);
  background: rgba(5, 28, 43, .97);
  border-bottom: 1px solid rgba(215, 178, 67, .16);
  box-shadow: 0 8px 24px rgba(3, 19, 30, .12);
  backdrop-filter: blur(14px);
}
.header-inner {
  position: relative;
  min-height: var(--site-header-height);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.logo { display: inline-flex; align-items: center; min-width: 0; }
.logo img { display: block; width: 220px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  white-space: nowrap;
  color: #f2f6f8;
  font-size: 13.5px;
  font-weight: 700;
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--site-header-height);
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-500);
  transition: transform .2s ease;
}
.nav a:hover, .nav a.active { color: var(--gold-400); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.lang { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.lang a {
  min-width: 38px;
  padding: 8px 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #edf3f6;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.lang a:hover, .lang a.active {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
}
.oly-menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  min-width: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.oly-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.menu-open .oly-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .oly-menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .oly-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: calc(610px + var(--header-safe));
  display: flex;
  align-items: center;
  padding-top: var(--header-safe);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(90deg, rgba(3, 19, 30, .98) 0%, rgba(3, 19, 30, .9) 48%, rgba(3, 19, 30, .42) 100%),
    url(assets/hero-london-v16.jpg) 72% center / cover no-repeat;
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 65%, rgba(3, 19, 30, .55));
  pointer-events: none;
}
.hero .container { padding: 72px 0 92px; }
main > .section:first-child { padding-top: calc(84px + var(--header-safe)); }
.kicker {
  margin: 0 0 20px;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 960px;
  margin: 0 0 24px;
  font-size: 62px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}
.hero p {
  max-width: 860px;
  margin: 0 0 34px;
  color: #dae5ec;
  font-size: 18px;
  line-height: 1.65;
}
.hero .brand-statement {
  max-width: 940px;
  margin-bottom: 18px;
  color: var(--gold-400);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.45;
}
.hero-corridors {
  max-width: 880px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 32px;
}
.hero-corridors span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(215, 178, 67, .34);
  background: rgba(255, 255, 255, .06);
  color: #edf4f7;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn, button:not(.oly-menu-toggle) {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover, button:not(.oly-menu-toggle):hover { transform: translateY(-2px); }
.btn.white { background: var(--white); color: var(--navy-950); }
.btn.white:hover { box-shadow: 0 10px 28px rgba(255, 255, 255, .18); }
.btn.gold, button:not(.oly-menu-toggle) { background: var(--gold-500); color: var(--navy-950); }
.btn.gold:hover, button:not(.oly-menu-toggle):hover { background: var(--gold-400); box-shadow: 0 10px 28px rgba(215, 178, 67, .18); }
.btn.outline { border-color: rgba(255, 255, 255, .34); background: transparent; color: var(--white); }
.btn.outline:hover { border-color: var(--gold-500); }

/* Shared sections */
.section {
  padding: 84px 0;
  border-bottom: 1px solid rgba(16, 35, 52, .08);
  background: var(--white);
  color: var(--ink);
}
.section.alt { background: var(--surface); }
.section h2 {
  max-width: 880px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}
.section h1 {
  max-width: 900px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 58px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}
.lead {
  max-width: 900px;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.72;
}
.section h1,
.section h2,
.section h3,
.lead,
.card,
.market-card,
.legal-content,
.footer {
  overflow-wrap: break-word;
}
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }

/* Market overview */
.market { background: var(--surface); }
.market-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.market-layout > div:first-child { position: sticky; top: calc(var(--header-safe) + 42px); }
.market-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.market-card {
  position: relative;
  min-height: 180px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.market-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-500);
}
.market-card h3 { margin: 0 0 12px; color: var(--ink); font-size: 22px; line-height: 1.2; }
.market-card p { margin: 0; color: var(--slate); font-size: 14px; }
.market-card:nth-child(5) { grid-column: 1 / -1; min-height: 150px; }

/* Defence focus */
.defence-focus {
  border-color: rgba(212, 166, 63, .2);
  background:
    radial-gradient(circle at 82% 12%, rgba(212, 166, 63, .14), transparent 28rem),
    linear-gradient(135deg, #06111c 0%, #081a27 54%, #10283a 100%);
  color: var(--white);
}
.defence-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: stretch;
}
.defence-focus h2,
.defence-focus h3 { color: var(--white); }
.defence-focus .lead { color: #d0dde5; }
.defence-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.defence-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(212, 166, 63, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}
.defence-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.defence-points article {
  min-width: 0;
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 8, 17, .46);
}
.defence-points span {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold-500), rgba(212, 166, 63, .18));
}
.defence-points h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.defence-points p {
  margin: 0;
  color: #b9c9d4;
  font-size: 13.5px;
  line-height: 1.58;
}
.defence-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold-500);
  background: rgba(212, 166, 63, .08);
  color: #dbe6ed;
  font-size: 13.5px;
  line-height: 1.6;
}

/* About */
#about {
  border-color: rgba(215, 178, 67, .14);
  background: linear-gradient(180deg, var(--navy-900), #071f30);
  color: var(--white);
}
#about h2, #about h3 { color: var(--white); }
#about .lead { color: #c8d6df; }
#about .grid2 { align-items: stretch; }
.image-panel {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 178, 67, .2);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-lg);
}
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(3, 19, 30, .32));
}
.about-img { background-image: url(assets/about-boardroom-v16.jpg); }
.company-img { background-image: url(assets/company-office-v16.jpg); background-position: left center; }
.card {
  min-width: 0;
  min-height: 190px;
  padding: 30px;
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin: 0 0 14px; color: var(--ink); font-size: 21px; line-height: 1.3; }
.card p { margin: 0; color: var(--slate); }
.credential-badges {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 6px;
}
.credential-badges span {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.credential-badges strong {
  display: block;
  margin-bottom: 7px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
#about .card {
  border-color: rgba(215, 178, 67, .18);
  background: rgba(255, 255, 255, .045);
  box-shadow: none;
}
#about .card p { color: #d1dee6; }
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; }
.checks p { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.checks p::before { content: "✓"; position: absolute; left: 0; color: var(--gold-400); font-weight: 900; }
.why-card { display: flex; flex-direction: column; gap: 16px; }
.why-points {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.why-points span {
  position: relative;
  display: block;
  padding: 11px 12px 11px 34px;
  border: 1px solid rgba(215, 178, 67, .16);
  background: rgba(255, 255, 255, .035);
  color: #dce7ed;
  font-size: 14px;
  line-height: 1.45;
}
.why-points span::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 13px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--gold-400);
}

/* Services and sectors */
#services { background: var(--white); }
#services .card {
  position: relative;
  padding-top: 34px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
#services .card:hover { transform: translateY(-4px); border-color: #c9b66f; box-shadow: 0 18px 42px rgba(3, 19, 30, .11); }
.num { margin-bottom: 24px; color: var(--gold-500); font-size: 13px; font-weight: 900; letter-spacing: 0; }
.num::after { content: ""; display: block; width: 42px; height: 2px; margin-top: 14px; background: var(--gold-500); }
#industries { background: var(--surface); }
#industries .card { box-shadow: none; }
#industries .card::before { content: ""; display: block; width: 32px; height: 3px; margin-bottom: 24px; background: var(--gold-500); }

/* Group */
.group-section {
  border-color: rgba(215, 178, 67, .16);
  background: linear-gradient(135deg, var(--navy-950), #082335 58%, var(--navy-800));
  color: var(--white);
}
.group-section h2 { color: var(--white); }
.group-section .lead { color: #c6d5de; }
.group-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 38px; }
.group-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid rgba(215, 178, 67, .35);
  background: rgba(255, 255, 255, .055);
}
.group-card.olymedica-card { border-color: rgba(68, 188, 197, .4); }
.group-logo { height: 58px; display: flex; align-items: center; margin-bottom: 26px; }
.group-logo img { width: auto; max-width: 290px; max-height: 54px; object-fit: contain; }
.olymedica-card .group-logo { width: min(460px, 72%); height: 86px; padding: 0; background: transparent; }
.olymedica-card .group-logo img {
  width: 100%;
  max-width: 460px;
  max-height: 82px;
  filter: drop-shadow(0 2px 12px rgba(68, 188, 197, .18));
  opacity: 1;
}
.division-status {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(66, 206, 158, .48);
  background: rgba(29, 120, 88, .18);
  color: #a8f1d3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.division-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #56d9a9;
  box-shadow: 0 0 0 4px rgba(86, 217, 169, .12);
}
.group-card h3 { margin: 0 0 12px; color: var(--white); font-size: 26px; }
.group-card p { margin: 0 0 26px; color: #d0dde5; }
.group-link {
  min-width: 190px;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin-top: auto;
  line-height: 1.1;
}
.group-link span { font-size: 13px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.group-link small { color: #b9c9d3; font-size: 11px; font-weight: 600; }

/* Process */
#process { background: var(--white); }
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: #cfd9df;
}
.process-card {
  position: relative;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
}
.process-card > div {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 900;
}
.process-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 17px; line-height: 1.35; }
.process-card p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.6; }

/* Markets and company */
#markets { background: var(--surface); }
#markets .grid3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
#markets .card { min-height: 230px; padding: 26px; border-color: var(--line-light); box-shadow: none; }
#markets .card h3 { padding-bottom: 14px; border-bottom: 2px solid var(--gold-500); font-size: 19px; }
#markets .card p { font-size: 14px; }
#company { background: var(--white); }
#company .grid2:first-child { align-items: center; margin-bottom: 34px; }
#company .card { min-height: 0; box-shadow: none; }
#company .container > .card:last-child { border-left: 4px solid var(--gold-500); background: var(--surface); }
/* Compliance and document centre */
.documents-section {
  border-color: rgba(16, 35, 52, .08);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-quiet) 100%);
  color: var(--ink);
}
.documents-section h2,
.documents-section h3,
.documents-section h4 { color: var(--ink); }
.documents-section .lead { color: var(--slate); }
.documents-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}
.documents-notice {
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--gold-500);
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.documents-notice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-400);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.documents-notice span {
  display: block;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}
.document-hub {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.document-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-light);
  background: #fbfcfd;
}
button.document-tab {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 22px 24px;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  box-shadow: none;
  transform: none;
}
button.document-tab:last-child { border-right: 0; }
button.document-tab:hover {
  transform: none;
  background: var(--surface);
  box-shadow: none;
}
button.document-tab.active {
  background: var(--navy-900);
  color: var(--white);
}
button.document-tab span {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.22;
}
button.document-tab small {
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
button.document-tab.active small { color: var(--gold-400); }
.document-panels { background: var(--white); }
.documents-panel[hidden] { display: none; }
.documents-panel-head {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
  gap: 24px;
  align-items: end;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--line-light);
}
.documents-panel-head h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}
.documents-panel-head p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}
.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.document-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-light);
  transition: background .2s ease;
}
.document-card:hover { background: #fbfcfd; }
.document-card:nth-child(odd) { border-right: 1px solid var(--line-light); }
.document-card h4 {
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}
.document-card p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.5;
}
.document-card.controlled-card { background: #fffdf8; }
.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.documents-column {
  min-width: 0;
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.documents-column > h3 {
  margin: 0;
  padding: 22px 22px 6px;
  font-size: 23px;
}
.documents-column > p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--slate);
  font-size: 14px;
}
.documents-column.controlled {
  border-color: rgba(205, 169, 74, .45);
  background: #fbfcfd;
}
.document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 124px;
  padding: 18px 20px;
  border-top: 1px solid var(--line-light);
}
.document-row h4 {
  margin: 8px 0 6px;
  font-size: 16px;
  line-height: 1.28;
}
.document-row p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
}
.doc-pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border: 1px solid var(--line-light);
  color: var(--slate);
  background: var(--surface);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.doc-pill.public { border-color: rgba(47, 125, 76, .36); color: #286c43; background: #eef8f2; }
.doc-pill.form { border-color: rgba(205, 169, 74, .55); color: #836611; background: #fbf7e8; }
.doc-pill.controlled { border-color: rgba(165, 67, 67, .4); color: #8f3535; background: #fff1f1; }
.doc-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.doc-actions {
  display: grid;
  gap: 8px;
  min-width: 132px;
}
.doc-action:hover {
  transform: translateY(-2px);
  background: var(--gold-400);
  border-color: var(--gold-400);
}
.doc-action.secondary {
  background: transparent;
  color: #8b6d13;
}
.doc-action.secondary:hover {
  background: rgba(205, 169, 74, .12);
  color: var(--navy-950);
}
.doc-action.request {
  background: transparent;
  color: #8b6d13;
}
.doc-action.request:hover {
  background: rgba(205, 169, 74, .12);
  color: var(--navy-950);
}

/* Arabic / RTL */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .topbar .container,
html[dir="rtl"] .header-inner,
html[dir="rtl"] .footer-grid { direction: ltr; }
html[dir="rtl"] .topbar span:first-child,
html[dir="rtl"] .footer-grid > * { direction: rtl; text-align: right; }
html[dir="rtl"] .nav,
html[dir="rtl"] .lang,
html[dir="rtl"] main,
html[dir="rtl"] .footer { direction: rtl; }
html[dir="rtl"] .hero {
  background:
    linear-gradient(270deg, rgba(3, 19, 30, .97) 0%, rgba(3, 19, 30, .88) 48%, rgba(3, 19, 30, .38) 100%),
    url(assets/hero-london-v16.jpg) 28% center / cover no-repeat;
}
html[dir="rtl"] .market-card::before { right: 0; left: auto; }
html[dir="rtl"] .documents-notice {
  border-left-width: 1px;
  border-right: 4px solid var(--gold-500);
}
html[dir="rtl"] button.document-tab {
  align-items: flex-end;
  border-right: 0;
  border-left: 1px solid var(--line-light);
  text-align: right;
}
html[dir="rtl"] button.document-tab:last-child { border-left: 0; }
html[dir="rtl"] .document-card {
  direction: rtl;
  border-right: 0;
}
html[dir="rtl"] .document-card:nth-child(odd) { border-left: 1px solid var(--line-light); }
html[dir="rtl"] .document-row {
  direction: rtl;
}
html[dir="rtl"] .checks p { padding-right: 28px; padding-left: 0; }
html[dir="rtl"] .checks p::before { right: 0; left: auto; }
html[dir="rtl"] .why-points span { padding-right: 34px; padding-left: 12px; }
html[dir="rtl"] .why-points span::before { right: 13px; left: auto; }
html[dir="rtl"] .defence-note {
  border-right: 4px solid var(--gold-500);
  border-left: 1px solid rgba(212, 166, 63, .18);
}
html[dir="rtl"] #company .container > .card:last-child {
  border-right: 4px solid var(--gold-500);
  border-left: 1px solid var(--line-light);
}
html[dir="rtl"] .group-card,
html[dir="rtl"] .group-link { align-items: flex-start; }
html[dir="rtl"] .division-status { right: auto; left: 24px; }

/* Contact */
#contact {
  border-color: rgba(215, 178, 67, .16);
  background: linear-gradient(180deg, #061b2a 0%, #092437 100%);
  color: var(--white);
}
#contact h2, #contact h3, #contact h4, #contact label { color: var(--white); }
#contact .lead { color: #c5d4dd; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; margin-top: 34px; align-items: stretch; }
#contact .card {
  position: relative;
  overflow: hidden;
  border-color: rgba(215, 178, 67, .2);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 22px 58px rgba(3, 19, 30, .16);
}
#contact .card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), rgba(215, 178, 67, .18));
}
#contact .card p { color: #d0dde5; }
.info-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 24px; }
.info-card h4 { margin: 20px 0 5px; color: var(--white); font-size: 12px; letter-spacing: 0; text-transform: uppercase; }
.contact-link {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(215, 178, 67, .65);
  text-underline-offset: 4px;
}
.contact-link:hover { color: var(--gold-400); }
.form-card label { display: block; margin: 0 0 6px; font-size: 13px; font-weight: 700; }
.form-card input, .form-card textarea {
  width: 100%;
  display: block;
  margin: 0 0 15px;
  padding: 14px 15px;
  border: 1px solid #cfdae2;
  border-radius: 0;
  background: #f8fafb;
  color: #132634;
  outline: 0;
}
.form-card input:focus, .form-card textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(215, 178, 67, .16); }
.form-card textarea { min-height: 132px; resize: vertical; }
.form-card button { width: 100%; margin-top: 4px; }
.form-card .hp-field {
  position: fixed;
  top: -10000px;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.success, .form-error { margin-bottom: 16px; padding: 12px 14px; border: 1px solid; }
.success { border-color: #4d9a68; background: rgba(47, 125, 76, .25); color: #e2f6e9; }
.form-error { border-color: #c66c6c; background: rgba(165, 67, 67, .25); color: #ffe7e7; }

/* Legal */
.legal-grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px; }
.legal-menu { padding: 14px; border: 1px solid var(--line-light); background: var(--surface); }
.legal-menu a { display: block; padding: 12px 10px; border-bottom: 1px solid var(--line-light); color: var(--slate); font-size: 14px; }
.legal-menu a:last-child { border-bottom: 0; }
.legal-menu a:hover, .legal-menu a.current { color: #8b6d13; font-weight: 700; }
.legal-content { padding: 40px; border: 1px solid var(--line-light); background: var(--white); box-shadow: var(--shadow-sm); }
.legal-content p { margin: 0 0 18px; color: var(--slate); }
.legal-content h2 { margin-top: 34px; font-size: 24px; }

/* Footer */
.footer {
  padding: 62px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--navy-950);
  color: #cbd7df;
}
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr 1.05fr 1fr; gap: 42px; }
.footer-logo { width: 230px; height: auto; margin-bottom: 22px; }
.footer h3 { margin: 0 0 16px; color: var(--white); font-size: 14px; letter-spacing: 0; text-transform: uppercase; }
.footer p { margin: 0; color: #b8c8d2; font-size: 14px; }
.footer a { display: block; margin: 7px 0; color: #d5e0e6; font-size: 14px; }
.footer a:hover, .footer a.current, .footer a.active { color: var(--gold-400); }
.footer-group-links { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-group-links a { margin: 0 0 4px; color: var(--gold-400); font-weight: 900; }
.footer-group-links span { display: block; color: #9fb1bd; font-size: 12px; }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); color: #8fa3b0; font-size: 12px; }

/* Consent preferences */
.consent-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 120000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(215, 178, 67, .35);
  border-top: 4px solid var(--gold-500);
  background: rgba(5, 28, 43, .98);
  box-shadow: var(--shadow-lg);
  color: #d8e5ec;
}
.consent-banner[hidden] { display: none; }
.consent-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 17px;
}
.consent-copy p {
  margin: 0;
  max-width: 780px;
  color: #c4d3dc;
  font-size: 13.5px;
  line-height: 1.55;
}
.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.consent-links a {
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 800;
}
.consent-actions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.consent-btn {
  min-height: 42px !important;
  padding: 9px 13px !important;
  font-size: 12px !important;
}
.consent-btn.secondary {
  border-color: rgba(255, 255, 255, .2) !important;
  background: transparent !important;
  color: var(--white) !important;
}
.consent-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.consent-panel[hidden] { display: none; }
.consent-panel label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
  color: #c9d7df;
  font-size: 12px;
  line-height: 1.4;
}
.consent-panel label strong {
  display: block;
  color: var(--white);
  font-size: 12.5px;
}

/* Laptop and tablet navigation */
@media (max-width: 1280px) {
  :root {
    --topbar-height: 0px;
    --site-header-height: 82px;
    --header-safe: var(--site-header-height);
  }
  .topbar { display: none; }
  .site-header { top: 0; }
  .header-inner {
    min-height: var(--site-header-height);
    grid-template-columns: minmax(190px, 1fr) auto auto;
    grid-template-rows: auto;
    gap: 0 14px;
    padding: 10px 0;
  }
  .logo { grid-column: 1; grid-row: 1; }
  .logo img { width: 230px; }
  .oly-menu-toggle { display: flex; grid-column: 3; grid-row: 1; }
  .lang {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }
  .lang a { min-width: 40px; padding: 7px 8px; }
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 100001;
    grid-column: auto;
    grid-row: auto;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(215, 178, 67, .2);
    background: rgba(5, 28, 43, .985);
    box-shadow: 0 18px 42px rgba(3, 19, 30, .28);
    backdrop-filter: blur(14px);
    white-space: normal;
  }
  .site-header.menu-open .nav { display: grid; }
  .nav a {
    min-height: 42px;
    display: block;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .035);
  }
  .nav a::after { display: none; }
}

@media (max-width: 1080px) {
  .section { padding: 68px 0; }
  .market-layout { grid-template-columns: 1fr; gap: 34px; }
  .market-layout > div:first-child { position: static; }
  .defence-layout { grid-template-columns: 1fr; gap: 24px; }
  .grid3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credential-badges { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .documents-head,
  .documents-grid { grid-template-columns: 1fr; }
  .document-list { grid-template-columns: 1fr; }
  .document-card:nth-child(odd) { border-right: 0; }
  html[dir="rtl"] .document-card:nth-child(odd) { border-left: 0; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .process-grid::before { display: none; }
  .process-card { padding: 0 14px; text-align: left; }
  .process-card > div { margin: 0 0 18px; }
  #markets .grid3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --site-header-height: 76px; }
  .container { width: min(92vw, 560px); }
  .header-inner { padding: 9px 0; gap: 0 9px; }
  .logo img { width: min(190px, 48vw); }
  .lang a { min-width: 32px; padding: 5px 6px; font-size: 10px; }
  .site-header.menu-open .nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: 0; background-position: 62% center; }
  .hero .container { padding: 58px 0 68px; }
  .hero h1 { max-width: 16ch; font-size: 42px; line-height: 1.08; }
  .hero .brand-statement { font-size: 19px; }
  .hero p { font-size: 16px; }
  .btns { display: grid; grid-template-columns: 1fr; max-width: 390px; }
  .btn { width: 100%; }
  .section { padding: 54px 0; }
  .section h2 { font-size: 36px; }
  .lead { font-size: 17px; }
  .grid2, .grid3, .group-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .credential-badges { grid-template-columns: 1fr; }
  .credential-badges span { min-height: 0; }
  .contact-grid { gap: 18px; }
  .market-grid { grid-template-columns: 1fr; }
  .market-card:nth-child(5) { grid-column: auto; }
  .market-card { min-height: 0; }
  .defence-panel { padding: 18px; }
  .defence-points { grid-template-columns: 1fr; }
  .defence-points article { min-height: 0; }
  .image-panel { min-height: 290px; }
  .checks, .info-columns { grid-template-columns: 1fr; }
  .group-card { min-height: 0; padding: 26px; }
  .division-status { position: static; margin: 0 0 20px; }
  .olymedica-card .group-logo { width: 100%; height: 70px; }
  .olymedica-card .group-logo img { max-width: 360px; max-height: 66px; }
  .group-link { width: 100%; min-width: 0; }
  .process-grid, #markets .grid3 { grid-template-columns: 1fr; }
  .process-card { padding: 0; }
  #markets .card { min-height: 0; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-content { padding: 26px; }
  .documents-head { gap: 22px; }
  .documents-notice { padding: 18px; }
  .document-tabs { grid-template-columns: 1fr; }
  button.document-tab {
    min-height: 74px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }
  button.document-tab:last-child { border-bottom: 0; }
  .documents-panel-head {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 18px 18px;
  }
  .documents-panel-head h3 { font-size: 24px; }
  .document-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }
  .documents-column > h3 { font-size: 21px; }
  .document-row {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }
  .doc-action {
    width: 100%;
    min-width: 0;
  }
  .doc-actions {
    width: 100%;
    min-width: 0;
  }
  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .consent-actions {
    justify-content: stretch;
  }
  .consent-actions .consent-btn,
  .consent-panel .consent-btn {
    width: 100%;
  }
  .consent-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  :root { --site-header-height: 108px; }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 7px 10px;
  }
  .logo { grid-column: 1; grid-row: 1; }
  .logo img { width: min(205px, 60vw); }
  .oly-menu-toggle { grid-column: 2; grid-row: 1; }
  .lang { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
  .nav { top: calc(100% + 1px); }
  .site-header.menu-open .nav { grid-template-columns: 1fr; }
  .oly-menu-toggle { width: 42px; height: 40px; min-width: 42px; }
  .hero h1 { font-size: 34px; }
  .hero .brand-statement { font-size: 17px; }
  .section h2 { font-size: 32px; }
  .card { padding: 24px; }
  .lang { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* v32 Global Impact visual system */
:root {
  --navy-950: #020811;
  --navy-925: #06111c;
  --navy-900: #081a27;
  --navy-850: #0b2233;
  --navy-800: #123149;
  --gold-500: #d4a63f;
  --gold-400: #e5c36d;
  --cyan-500: #27b8c4;
  --blue-500: #2c8cf4;
  --ink: #edf5f8;
  --slate: #b6c6d1;
  --muted: #8799a8;
  --line-dark: rgba(212, 166, 63, .24);
  --line-light: rgba(255, 255, 255, .12);
  --surface: #07131f;
  --surface-warm: #0a1a29;
  --surface-quiet: #0d2030;
  --shadow-sm: 0 18px 42px rgba(0, 0, 0, .2);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, .34);
  --radius: 6px;
}

body {
  background:
    radial-gradient(circle at 86% 2%, rgba(44, 140, 244, .16), transparent 34rem),
    linear-gradient(180deg, var(--navy-950) 0%, #020710 100%);
  color: var(--ink);
}

.site-header {
  background: rgba(2, 8, 17, .88);
  border-bottom: 1px solid rgba(212, 166, 63, .28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .26);
}
.header-inner { grid-template-columns: 248px minmax(0, 1fr) auto; }
.logo img {
  width: 238px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .08));
}
.nav {
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
}
.nav a { color: #f2f6f7; }
.nav a::after {
  bottom: 19px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.lang a {
  border-color: rgba(212, 166, 63, .36);
  background: rgba(255, 255, 255, .03);
}

.hero {
  min-height: calc(690px + var(--header-safe));
  background:
    radial-gradient(circle at 83% 20%, rgba(212, 166, 63, .2), transparent 24rem),
    linear-gradient(90deg, rgba(2, 8, 17, .98) 0%, rgba(2, 8, 17, .91) 43%, rgba(2, 8, 17, .38) 100%),
    url(assets/hero-london-v16.jpg) 74% center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .45), transparent 80%);
}
.hero::after {
  background:
    linear-gradient(180deg, transparent 58%, var(--navy-950) 100%),
    radial-gradient(circle at 76% 32%, rgba(39, 184, 196, .12), transparent 26rem);
}
.hero .container { padding: 76px 0 96px; }
.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 54px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.hero .brand-statement {
  max-width: 760px;
  color: var(--gold-400);
  font-size: 20px;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.hero p {
  max-width: 760px;
  color: #d7e3ea;
}
.hero-corridors span {
  border-color: rgba(212, 166, 63, .38);
  background: rgba(6, 17, 28, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}
.btn.white {
  border-color: rgba(255, 255, 255, .32);
  background: transparent;
  color: var(--white);
}
.btn.gold,
button:not(.oly-menu-toggle) {
  background: var(--gold-500);
  color: #06111c;
}

.section,
.section.alt,
.market,
#services,
#industries,
#markets,
#company,
.documents-section {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent),
    var(--navy-925);
  color: var(--ink);
}
.section.alt,
#industries,
#markets,
.documents-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(39, 184, 196, .08), transparent 28rem),
    var(--navy-900);
}
.section h1,
.section h2,
.section h3,
.documents-section h2,
.documents-section h3,
.documents-section h4 {
  color: var(--white);
}
.lead,
.section p,
.card p,
.market-card p,
.process-card p,
.documents-section .lead,
.documents-notice span,
.documents-panel-head p,
.document-card p,
.legal-content p {
  color: var(--slate);
}
.kicker {
  color: var(--gold-400);
  text-transform: uppercase;
}

.card,
.market-card,
.process-card,
.legal-content,
.legal-menu,
.documents-notice,
.document-hub,
.documents-column {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
  box-shadow: none;
}
.card,
.market-card,
.document-hub,
.documents-notice,
.legal-content,
.legal-menu,
.group-card {
  border-radius: var(--radius);
}
.card h3,
.market-card h3,
.process-card h3,
.document-card h4,
.legal-content h2 { color: var(--white); }
.market-layout { align-items: start; }
.market-card::before,
#industries .card::before,
.num::after {
  background: linear-gradient(180deg, var(--gold-500), rgba(212, 166, 63, .24));
}
#services .card:hover {
  border-color: rgba(212, 166, 63, .55);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .22);
}
.image-panel {
  border-color: rgba(212, 166, 63, .26);
  border-radius: var(--radius);
}
.checks p,
.why-points span {
  border-color: rgba(255, 255, 255, .12);
}

.group-section {
  background:
    radial-gradient(circle at 78% 12%, rgba(44, 140, 244, .17), transparent 30rem),
    linear-gradient(135deg, #020811 0%, #06111c 54%, #0c2436 100%);
}
.group-section .container {
  width: min(1380px, 92vw);
}
.group-section h2,
.group-section .lead {
  margin-inline: auto;
  text-align: center;
}
.group-section .kicker {
  text-align: center;
}
.group-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.group-card {
  min-width: 0;
  min-height: 390px;
  padding: 26px;
  border-color: rgba(255, 255, 255, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
    rgba(6, 17, 28, .88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  overflow: hidden;
}
.group-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 166, 63, .55);
}
.company-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 166, 63, .52);
  background: rgba(212, 166, 63, .08);
  color: var(--gold-400);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.company-mark span {
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}
.company-logo-wrap {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.company-logo-wrap img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .32));
}
.company-olydefence .company-logo-wrap img,
.company-olymedica .company-logo-wrap img,
.company-olyelectra .company-logo-wrap img,
.company-olyaerospace .company-logo-wrap img {
  max-height: 64px;
}
.company-olyvenra-ltd .company-logo-wrap img {
  max-height: 46px;
}
.company-sector {
  display: block;
  min-height: 0;
  margin-bottom: 12px;
  color: var(--gold-400);
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.group-card h3 {
  max-width: 100%;
  font-size: 22px;
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: normal;
}
.group-card p {
  color: #b9c9d4;
  font-size: 13.5px;
  line-height: 1.58;
  overflow-wrap: break-word;
}
.company-olydefence {
  grid-column: span 2;
  border-color: rgba(212, 166, 63, .58);
  background:
    radial-gradient(circle at 92% 0%, rgba(212, 166, 63, .18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    rgba(6, 17, 28, .9);
}
.company-olydefence h3,
.company-olyvenra-ltd h3 {
  font-size: 26px;
}
.company-olyvenra-ltd {
  grid-column: span 2;
}
.company-olymedica .company-mark {
  border-color: rgba(39, 184, 196, .74);
  background: rgba(39, 184, 196, .1);
  color: #55d7dd;
}
.company-olyelectra .company-mark {
  border-color: rgba(44, 140, 244, .78);
  background: rgba(44, 140, 244, .12);
  color: #66b2ff;
}
.company-olyaerospace .company-mark {
  border-color: rgba(143, 165, 193, .72);
  background: rgba(143, 165, 193, .1);
  color: #b8c7dc;
}
.company-olydefence .company-mark {
  border-color: rgba(222, 230, 238, .72);
  background: rgba(222, 230, 238, .08);
  color: #eef4f8;
}
.company-olyvenra-ltd { border-color: rgba(212, 166, 63, .42); }
.group-link {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.group-link span,
.group-link small {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.process-grid::before { background: rgba(212, 166, 63, .26); }
.process-card {
  background: transparent;
  border: 0;
}
.process-card > div {
  background: var(--navy-950);
  color: var(--gold-400);
}
.credential-badges span {
  border-color: rgba(255, 255, 255, .12);
  border-top-color: var(--gold-500);
  background: rgba(255, 255, 255, .045);
  color: var(--white);
}
.credential-badges strong { color: var(--gold-400); }
#company .container > .card:last-child {
  background: rgba(255, 255, 255, .045);
}

.document-hub {
  border-top-color: var(--gold-500);
  background: rgba(255, 255, 255, .045);
}
.document-tabs,
.document-panels {
  background: transparent;
}
button.document-tab {
  border-color: rgba(255, 255, 255, .12);
  color: var(--white);
}
button.document-tab:hover,
button.document-tab.active {
  background: rgba(212, 166, 63, .14);
}
button.document-tab small { color: var(--muted); }
.documents-panel-head,
.document-card {
  border-color: rgba(255, 255, 255, .12);
}
.document-card {
  background: rgba(255, 255, 255, .02);
}
.document-card:hover {
  background: rgba(255, 255, 255, .05);
}
.document-card.controlled-card {
  background: rgba(212, 166, 63, .055);
}
.doc-pill {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}
.doc-action.secondary,
.doc-action.request {
  color: var(--gold-400);
}

#contact {
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 166, 63, .12), transparent 30rem),
    #06111c;
}
.form-card input,
.form-card textarea {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .92);
}
.footer {
  background: #020811;
}
.footer-grid {
  grid-template-columns: 1.1fr .72fr .88fr 1.12fr;
}
.footer-group-links {
  display: grid;
  gap: 5px;
}
.footer-group-links span {
  margin-bottom: 4px;
  color: var(--gold-400);
  font-weight: 900;
  text-transform: uppercase;
}
.footer-group-links a {
  color: #dce7ed;
  font-weight: 700;
}

html[dir="rtl"] .hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(212, 166, 63, .2), transparent 24rem),
    linear-gradient(270deg, rgba(2, 8, 17, .98) 0%, rgba(2, 8, 17, .91) 43%, rgba(2, 8, 17, .38) 100%),
    url(assets/hero-london-v16.jpg) 28% center / cover no-repeat;
}
html[dir="rtl"] .group-section .kicker,
html[dir="rtl"] .group-section h2,
html[dir="rtl"] .group-section .lead {
  text-align: center;
}

@media (max-width: 1280px) {
  .header-inner { grid-template-columns: minmax(190px, 1fr) auto auto; }
  .nav { font-size: 12px; text-transform: none; }
}

@media (max-width: 1180px) {
  .group-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-olydefence,
  .company-olyvenra-ltd { grid-column: span 2; }
}

@media (max-width: 900px) {
  .group-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-olydefence,
  .company-olyvenra-ltd { grid-column: span 2; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 760px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(2, 8, 17, .86), rgba(2, 8, 17, .95)),
      url(assets/hero-london-v16.jpg) 60% center / cover no-repeat;
  }
  .hero h1 {
    max-width: 13ch;
    font-size: 38px;
  }
  .hero .brand-statement {
    font-size: 16px;
  }
  .group-grid { grid-template-columns: 1fr; }
  .company-olydefence,
  .company-olyvenra-ltd { grid-column: auto; }
  .group-card {
    min-height: 0;
    padding: 24px;
  }
  .company-logo-wrap {
    min-height: 60px;
    margin-bottom: 18px;
  }
  .company-logo-wrap img {
    max-height: 50px;
  }
  .company-mark {
    width: 64px;
    height: 64px;
  }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 33px; }
}

/* v33.1 deep QA fixes: contrast, anchors and document tabs */
section[id],
.hero {
  scroll-margin-top: calc(var(--header-safe) + 28px);
}

#process {
  background:
    radial-gradient(circle at 14% 0%, rgba(39, 184, 196, .09), transparent 26rem),
    linear-gradient(180deg, #06111c 0%, #081a27 100%);
  color: var(--white);
}
#process h2,
#process h3 {
  color: var(--white);
}
#process .lead {
  max-width: 980px;
  color: #d4e0e8;
}
#process .process-grid::before {
  background: rgba(212, 166, 63, .42);
}
#process .process-card {
  background: transparent;
  border: 0;
}
#process .process-card > div {
  border-color: var(--gold-500);
  background: #020811;
  color: var(--gold-400);
  box-shadow: 0 0 0 5px rgba(212, 166, 63, .08);
}
#process .process-card h3 {
  font-size: 18px;
}
#process .process-card p {
  color: #c5d3dd;
  font-size: 14.5px;
  line-height: 1.62;
}

.document-tabs {
  background: rgba(2, 8, 17, .7);
}
button.document-tab {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .035);
  color: var(--white);
}
button.document-tab:hover {
  background: rgba(212, 166, 63, .12);
}
button.document-tab.active {
  background: var(--gold-500);
  color: #06111c;
}
button.document-tab.active small {
  color: rgba(6, 17, 28, .72);
}
button.document-tab small {
  color: #aebfca;
}

@media (max-width: 760px) {
  section[id],
  .hero {
    scroll-margin-top: calc(var(--header-safe) + 18px);
  }
}

/* v33.5 group-company polish: OLYVENRA parent row, operating companies below */
.group-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.group-card,
.company-olydefence,
.company-olyvenra-ltd {
  grid-column: auto;
}
.group-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-color: rgba(255, 255, 255, .14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    rgba(5, 17, 28, .86);
}
.company-olydefence {
  border-color: rgba(212, 166, 63, .58);
  background:
    radial-gradient(circle at 88% 2%, rgba(212, 166, 63, .15), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)),
    rgba(5, 17, 28, .88);
}
.company-olyvenra-ltd {
  order: -1;
  grid-column: 1 / -1;
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.4fr) minmax(230px, .55fr);
  grid-template-rows: auto auto;
  column-gap: 34px;
  row-gap: 8px;
  align-items: center;
  padding: 32px 34px;
  border-color: rgba(212, 166, 63, .38);
  background:
    radial-gradient(circle at 8% 0%, rgba(212, 166, 63, .12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)),
    rgba(5, 17, 28, .9);
}
.company-logo-wrap {
  min-height: 68px;
  justify-content: center;
  margin-bottom: 22px;
}
.company-logo-wrap img {
  max-width: 92%;
  max-height: 46px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .24));
}
.company-olydefence .company-logo-wrap img,
.company-olymedica .company-logo-wrap img,
.company-olyelectra .company-logo-wrap img,
.company-olyaerospace .company-logo-wrap img {
  max-height: 48px;
}
.company-olyvenra-ltd .company-logo-wrap img {
  max-width: 88%;
  max-height: 44px;
}
.company-olyvenra-ltd .company-logo-wrap {
  grid-column: 1;
  grid-row: 1 / 3;
  justify-content: flex-start;
  min-height: 0;
  margin: 0;
}
.company-olyvenra-ltd .company-logo-wrap img {
  max-width: 100%;
  max-height: 52px;
}
.company-name-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.group-card .company-sector {
  min-height: 32px;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.company-olyvenra-ltd .company-sector {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  min-height: 0;
  margin: 0 0 6px;
}
.group-card p {
  margin-bottom: 24px;
  color: #c0ced8;
  font-size: 13.8px;
  line-height: 1.6;
}
.company-olyvenra-ltd p {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
  max-width: 760px;
}
.group-link {
  margin-top: auto;
  min-height: 78px;
}
.company-olyvenra-ltd .group-link {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  width: 100%;
  max-width: 280px;
  justify-self: end;
  margin-top: 0;
}

@media (max-width: 1500px) {
  .group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .company-olyvenra-ltd {
    grid-template-columns: minmax(220px, .8fr) minmax(280px, 1fr);
  }
  .company-olyvenra-ltd .group-link {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    margin-top: 18px;
  }
}

@media (max-width: 980px) {
  .group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .group-grid {
    grid-template-columns: 1fr;
  }
  .company-olyvenra-ltd {
    display: flex;
    grid-column: auto;
    min-height: 0;
    padding: 24px;
  }
  .company-olyvenra-ltd .company-logo-wrap {
    justify-content: center;
    margin-bottom: 18px;
  }
  .company-olyvenra-ltd .company-sector,
  .company-olyvenra-ltd p,
  .company-olyvenra-ltd .group-link {
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
    justify-self: auto;
  }
  .group-card {
    min-height: 0;
  }
  .company-logo-wrap {
    min-height: 70px;
  }
}

/* v33.6 final group-company layout: parent company first, operating companies balanced below */
.group-section .lead {
  max-width: 960px;
}
.group-parent-card {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.45fr) minmax(210px, .48fr);
  grid-template-rows: auto;
  align-items: center;
  gap: 24px;
  min-height: 0;
  margin: 30px 0 18px;
  padding: 26px 28px;
  border-color: rgba(212, 166, 63, .42);
  background:
    radial-gradient(circle at 8% 0%, rgba(212, 166, 63, .1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)),
    rgba(5, 17, 28, .9);
}
.group-parent-card .company-logo-wrap {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  margin: 0;
  justify-content: flex-start;
}
.group-parent-card .company-logo-wrap img {
  max-width: 100%;
  max-height: 46px;
}
.group-parent-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}
.group-parent-card .company-sector {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  margin: 0 0 10px;
}
.group-parent-card p {
  grid-column: auto;
  grid-row: auto;
  align-self: auto;
  margin: 0;
  max-width: 760px;
  color: #c5d3dd;
  font-size: 14px;
  line-height: 1.55;
}
.group-parent-card .group-link {
  grid-column: auto;
  grid-row: auto;
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 250px;
  min-height: 70px;
  margin: 0;
}
.operating-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.operating-grid .group-card {
  min-height: 340px;
  padding: 22px;
}
.operating-grid .company-logo-wrap {
  min-height: 56px;
  margin-bottom: 18px;
}
.operating-grid .company-logo-wrap img {
  max-width: 94%;
  max-height: 38px;
}
.operating-grid .company-sector {
  min-height: 34px;
  margin-bottom: 14px;
  font-size: 10px;
}
.operating-grid .group-card p {
  margin-bottom: 18px;
  font-size: 13.2px;
  line-height: 1.52;
}
.operating-grid .group-link {
  min-height: 64px;
}
@media (max-width: 1280px) {
  .operating-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .group-parent-card {
    grid-template-columns: 1fr;
  }
  .group-parent-card .group-link {
    justify-self: start;
    max-width: 280px;
  }
}
@media (max-width: 680px) {
  .operating-grid {
    grid-template-columns: 1fr;
  }
  .group-parent-card {
    padding: 24px;
  }
  .group-parent-card .company-logo-wrap {
    justify-content: center;
  }
  .group-parent-copy h3,
  .group-parent-card .company-sector,
  .group-parent-card p {
    text-align: center;
  }
  .group-parent-card .group-link {
    justify-self: stretch;
    max-width: 100%;
  }
}
