/*
Theme Name: OLYVENRA Corporate Site v63 Six-Language Enterprise
Theme URI: https://olyvenra.com
Author: OLYVENRA LTD
Description: Multilingual corporate website for OLYVENRA LTD.
Version: 63.0
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: auto;
  height: 42px;
  min-width: 104px;
  padding: 0 13px;
  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: row;
  gap: 10px;
}
.oly-menu-toggle .menu-label {
  color: var(--white);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 750;
}
.oly-menu-toggle .menu-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.oly-menu-toggle .menu-bars i {
  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 .menu-bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .oly-menu-toggle .menu-bars i:nth-child(2) { opacity: 0; }
.site-header.menu-open .oly-menu-toggle .menu-bars i: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: #80630f; 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%;
  }
}

/* v38 release refinements */
.group-link{display:flex!important;flex-direction:column;align-items:center;justify-content:center;gap:.18rem;line-height:1.2;text-align:center;white-space:normal}
.group-link small{display:block;opacity:.72;font-size:.76rem;letter-spacing:.02em}
.why-grid,.group-grid,.capability-grid,.contact-grid{gap:clamp(1rem,2vw,1.5rem)}
.why-card p,.group-card p{margin-bottom:1.15rem}
[dir="rtl"] .company-sector,[dir="rtl"] .group-card p,[dir="rtl"] .contact-card{text-align:right}
[dir="rtl"] .ltr,[dir="rtl"] a[href^="tel:"],[dir="rtl"] a[href^="mailto:"]{direction:ltr;unicode-bidi:embed}
@media(max-width:700px){.btn-row,.hero-actions{gap:.7rem}.group-link{width:100%}.nav-links{gap:.8rem}}


/* v38 final — premium group platform cards */
.group-section { overflow: hidden; }
.group-section .lead { max-width: 980px; }
.operating-grid { align-items: stretch; }
.operating-grid .group-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(151, 173, 188, .24);
  background:
    linear-gradient(155deg, rgba(16, 31, 43, .98), rgba(7, 19, 29, .99));
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.operating-grid .group-card::before,
.group-parent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .26;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 74% auto;
}
.operating-grid .group-card::after,
.group-parent-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  z-index: -1;
  border: 1px solid rgba(214, 173, 65, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(214, 173, 65, .025), 0 0 0 72px rgba(214, 173, 65, .018);
  pointer-events: none;
}
.company-olydefence::before {
  background-image:
    radial-gradient(circle at 80% 18%, rgba(214,173,65,.18) 0 1px, transparent 2px),
    linear-gradient(90deg, transparent 49.5%, rgba(214,173,65,.08) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(214,173,65,.08) 50%, transparent 50.5%);
  background-size: 22px 22px, 88px 88px, 88px 88px;
}
.company-olymedica::before {
  background-image:
    radial-gradient(circle at 75% 20%, rgba(68,188,197,.18) 0 3px, transparent 4px),
    linear-gradient(35deg, transparent 48%, rgba(68,188,197,.08) 49%, rgba(68,188,197,.08) 51%, transparent 52%);
  background-size: 42px 42px, 86px 86px;
}
.company-olyelectra::before {
  background-image:
    linear-gradient(120deg, transparent 0 34%, rgba(88,194,93,.11) 35% 36%, transparent 37% 58%, rgba(88,194,93,.08) 59% 60%, transparent 61%);
  background-size: 150px 120px;
}
.company-olyaerospace::before {
  background-image:
    radial-gradient(ellipse at 78% 18%, transparent 0 38%, rgba(120,166,207,.13) 39% 39.8%, transparent 40.5%),
    radial-gradient(circle at 82% 18%, rgba(120,166,207,.22) 0 3px, transparent 4px);
}
.group-parent-card::before {
  background-image:
    radial-gradient(circle at 80% 18%, rgba(214,173,65,.17) 0 2px, transparent 3px),
    radial-gradient(ellipse at 80% 18%, transparent 0 30%, rgba(214,173,65,.08) 31% 31.8%, transparent 32.5%);
}
.operating-grid .company-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  margin-bottom: 20px;
}
.operating-grid .company-logo-wrap img {
  width: auto;
  max-width: 92%;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}
.operating-grid .company-name-text { display: none; }
.operating-grid .company-sector {
  display: block;
  min-height: 0;
  margin: 0 0 18px;
  color: #dfbd59;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .095em;
  font-weight: 800;
  text-transform: uppercase;
}
.operating-grid .group-card p {
  flex: 1 1 auto;
  margin: 0 0 24px;
  color: #d4dee5;
  font-size: 14.5px;
  line-height: 1.7;
}
.operating-grid .group-link,
.group-parent-card .group-link {
  width: 100%;
  min-height: 58px;
  margin-top: auto;
  padding: 13px 18px;
  border-color: rgba(151,173,188,.45);
  background: rgba(4,14,23,.34);
  font-size: 14px;
  letter-spacing: .025em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.operating-grid .group-link:hover,
.group-parent-card .group-link:hover {
  transform: translateY(-2px);
  border-color: rgba(214,173,65,.72);
  background: rgba(214,173,65,.08);
}
.operating-grid .group-link small,
.group-parent-card .group-link small {
  margin-top: 2px;
  font-size: 11.5px;
  opacity: .68;
}
.group-parent-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(214,173,65,.32);
  background: linear-gradient(145deg, rgba(18,34,47,.98), rgba(7,19,29,.99));
}
@media (min-width: 1281px) {
  .operating-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 1280px) and (min-width: 701px) {
  .operating-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .operating-grid .group-card { min-height: 390px; }
}
@media (max-width: 700px) {
  .operating-grid { gap: 18px; }
  .operating-grid .group-card {
    min-height: 0;
    padding: 26px 24px;
    border-radius: 14px;
  }
  .operating-grid .company-logo-wrap {
    justify-content: center;
    min-height: 66px;
    margin-bottom: 18px;
  }
  .operating-grid .company-logo-wrap img {
    max-width: 88%;
    max-height: 48px;
    object-position: center;
  }
  .operating-grid .company-sector {
    margin-bottom: 16px;
    text-align: left;
    font-size: 10.5px;
  }
  .operating-grid .group-card p {
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.62;
  }
  .operating-grid .group-link,
  .group-parent-card .group-link {
    min-height: 56px;
    padding: 12px 16px;
  }
  [dir="rtl"] .operating-grid .company-sector,
  [dir="rtl"] .operating-grid .group-card p { text-align: right; }
}


/* v39 live release - group-card consistency and mobile polish */
.group-grid.operating-grid { align-items: stretch; }
.group-grid.operating-grid .group-card { display:flex; flex-direction:column; min-height:100%; }
.group-grid.operating-grid .group-card > p { flex:1 1 auto; }
.group-card .group-link { min-height:70px; padding:14px 18px; justify-content:center; }
.group-card .group-link span { display:block; line-height:1.25; }
.group-card .group-link small { display:block; margin-top:4px; line-height:1.25; opacity:.74; }
.company-logo-wrap { min-height:112px; display:flex; align-items:center; justify-content:center; }
.company-logo-wrap img { max-height:76px; width:auto; object-fit:contain; }
@media (max-width:720px){
 .group-card,.group-parent-card{padding:28px 24px;}
 .company-logo-wrap{min-height:88px;margin-bottom:18px;}
 .company-logo-wrap img{max-height:62px;max-width:92%;}
 .group-card p{font-size:17px;line-height:1.62;}
 .group-card .group-link{min-height:60px;padding:12px 16px;}
}
[dir="rtl"] .group-card .group-link,[dir="rtl"] .group-card p,[dir="rtl"] .company-sector{text-align:right;}


/* v40 global editorial typography system */
:root {
  --type-display: clamp(42px, 5.25vw, 74px);
  --type-section: clamp(31px, 3.25vw, 48px);
  --type-card-title: clamp(19px, 1.5vw, 23px);
  --type-lead: clamp(17px, 1.45vw, 20px);
  --type-body: 16px;
}
body { font-size: var(--type-body); line-height: 1.65; }
.hero .container { padding-top: 64px; padding-bottom: 78px; }
.hero h1 {
  max-width: 14.5ch;
  font-size: var(--type-display);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero .brand-statement {
  max-width: 800px;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.48;
  font-weight: 700;
  text-wrap: pretty;
}
.hero p:not(.brand-statement) {
  max-width: 760px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
  text-wrap: pretty;
}
.section h2 { font-size: var(--type-section); line-height: 1.12; letter-spacing: -.025em; text-wrap: balance; }
.section .lead { max-width: 900px; font-size: var(--type-lead); line-height: 1.72; text-wrap: pretty; }
.card h3,.group-card h3 { font-size: var(--type-card-title); line-height: 1.25; }
.card p,.group-card p { line-height: 1.68; text-wrap: pretty; }
.nav a { font-size: 13px; letter-spacing: .035em; }
html[lang="ru"] .hero h1, html[lang="fr"] .hero h1 { font-size: clamp(39px, 4.8vw, 68px); max-width: 16ch; }
html[lang="tr"] .hero h1 { font-size: clamp(40px, 5vw, 70px); max-width: 15ch; }
html[lang="ar"] .hero h1 { font-size: clamp(40px, 5vw, 69px); line-height: 1.16; letter-spacing: 0; max-width: 15ch; }
html[lang="ar"] .hero .brand-statement, html[lang="ar"] .hero p { line-height: 1.85; }
@media (max-width: 900px) {
  .hero .container { padding-top: 52px; padding-bottom: 66px; }
  .hero h1 { max-width: 15ch; }
}
@media (max-width: 700px) {
  :root { --type-display: clamp(36px, 10.5vw, 46px); --type-section: clamp(28px, 8vw, 37px); }
  .hero .container { padding-top: 42px; padding-bottom: 56px; }
  .hero h1 { max-width: 100%; line-height: 1.06; letter-spacing: -.025em; }
  .hero .brand-statement { font-size: 17px; line-height: 1.55; }
  .hero p:not(.brand-statement) { font-size: 16px; line-height: 1.65; }
  html[lang="ru"] .hero h1, html[lang="fr"] .hero h1, html[lang="tr"] .hero h1, html[lang="ar"] .hero h1 { font-size: clamp(34px, 9.4vw, 42px); max-width: 100%; }
}


/* v41 visual balance correction — hero, platform cards and consent */
:root {
  --type-display: clamp(40px, 4.25vw, 62px);
  --type-section: clamp(29px, 2.8vw, 43px);
  --type-card-title: clamp(18px, 1.3vw, 21px);
}
.hero .container {
  padding-top: clamp(44px, 5vw, 66px);
  padding-bottom: clamp(58px, 6vw, 82px);
}
.hero h1 {
  max-width: 17.5ch;
  line-height: 1.06;
  letter-spacing: -.026em;
}
.hero .brand-statement {
  max-width: 760px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.52;
  letter-spacing: .005em;
}
.hero p:not(.brand-statement) {
  max-width: 800px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.68;
}
html[lang="tr"] .hero h1,
html[lang="ru"] .hero h1,
html[lang="fr"] .hero h1 {
  font-size: clamp(38px, 3.9vw, 58px);
  max-width: 18.5ch;
}
html[lang="ar"] .hero h1 {
  font-size: clamp(38px, 3.9vw, 58px);
  max-width: 18ch;
  line-height: 1.22;
}

.group-section .container { width: min(1280px, 92vw); }
.group-parent-card {
  grid-template-columns: minmax(190px,.58fr) minmax(0,1.65fr) minmax(180px,.43fr);
  gap: 20px;
  padding: 22px 24px;
}
.group-parent-card .company-logo-wrap img { max-height: 38px; }
.group-parent-copy h3 { font-size: 21px; }
.group-parent-card p { font-size: 13.5px; line-height: 1.55; }
.group-parent-card .group-link { min-height: 58px; max-width: 220px; }

.operating-grid { gap: 18px; }
.operating-grid .group-card {
  min-height: 360px;
  padding: 24px;
}
.operating-grid .company-logo-wrap {
  min-height: 60px;
  margin-bottom: 16px;
}
.operating-grid .company-logo-wrap img {
  max-height: 42px;
  max-width: 86%;
}
.operating-grid .company-sector {
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: .08em;
}
.operating-grid .group-card p {
  font-size: 14px;
  line-height: 1.62;
  margin-bottom: 20px;
}
.operating-grid .group-link,
.group-parent-card .group-link {
  min-height: 54px;
  padding: 10px 15px;
  font-size: 13px;
}
.operating-grid .group-link small,
.group-parent-card .group-link small { font-size: 10.5px; }

.consent-banner {
  max-width: 1040px;
  padding: 16px 18px;
  gap: 12px 18px;
  border-top-width: 3px;
}
.consent-copy strong { font-size: 15px; margin-bottom: 4px; }
.consent-copy p { font-size: 12.5px; line-height: 1.45; }
.consent-links { margin-top: 7px; }
.consent-actions { align-items: center; }
.consent-btn { min-height: 36px !important; padding: 7px 11px !important; font-size: 11px !important; }

@media (max-width: 1280px) and (min-width: 701px) {
  .operating-grid .group-card { min-height: 340px; }
  .operating-grid .company-logo-wrap img { max-height: 40px; }
}
@media (max-width: 900px) {
  .hero h1,
  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="ar"] .hero h1 { max-width: 100%; }
  .group-parent-card { grid-template-columns: 1fr; }
  .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: center; width: min(100%,280px); }
}
@media (max-width: 700px) {
  :root { --type-display: clamp(32px, 8.8vw, 40px); --type-section: clamp(26px, 7.2vw, 34px); }
  .hero .container { padding-top: 36px; padding-bottom: 48px; }
  .hero h1,
  html[lang="tr"] .hero h1,
  html[lang="ru"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="ar"] .hero h1 {
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 1.09;
  }
  .hero .brand-statement { font-size: 15.5px; line-height: 1.5; }
  .hero p:not(.brand-statement) { font-size: 15px; line-height: 1.62; }
  .operating-grid .group-card { padding: 22px 20px; }
  .operating-grid .company-logo-wrap { min-height: 54px; margin-bottom: 14px; }
  .operating-grid .company-logo-wrap img { max-height: 38px; max-width: 82%; }
  .operating-grid .group-card p { font-size: 14px; line-height: 1.58; }
  .consent-banner { padding: 14px; max-height: min(72vh,520px); overflow:auto; }
}


/* v42 executive visual refinement */
:root{--v42-gold:#d4a63f;--v42-line:rgba(212,166,63,.24)}
.hero{min-height:auto;background-position:76% center}
.hero::before{background:linear-gradient(90deg,rgba(2,12,22,.97) 0%,rgba(2,12,22,.90) 41%,rgba(2,12,22,.52) 66%,rgba(2,12,22,.34) 100%)}
.hero .container{padding-top:58px;padding-bottom:70px}
.hero h1{font-size:clamp(46px,4.6vw,66px);line-height:1.04;max-width:13.5ch;letter-spacing:-.035em;margin-bottom:22px}
.hero .brand-statement{max-width:760px;font-size:clamp(17px,1.45vw,20px);line-height:1.48;text-transform:none;letter-spacing:.01em;margin-bottom:20px}
.hero p:not(.brand-statement){max-width:770px;font-size:17px;line-height:1.7}
.hero-corridors{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));max-width:900px;gap:10px}
.hero-corridors span{display:flex;align-items:center;justify-content:center;min-height:42px;padding:8px 12px;text-align:center;font-size:12px;line-height:1.25}

#defence-focus .grid2{grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);gap:42px;align-items:center}
#defence-focus .grid2>.card{padding:28px}
#defence-focus .grid2>.card .grid2{gap:14px}
#defence-focus .grid2>.card .card{padding:22px;min-height:174px}
#defence-focus .notice{border-left:3px solid var(--v42-gold);background:rgba(212,166,63,.08);padding:18px 20px}

#process .lead{max-width:900px}
#process .process-grid{gap:18px}
#process .process-card{padding:0 10px}
#process .process-card h3{font-size:16px;min-height:42px}
#process .process-card p{font-size:13.5px;line-height:1.55}
#process .process-card>div{width:48px;height:48px;font-size:18px}

.operating-grid{gap:18px}
.operating-grid .group-card{min-height:365px;padding:26px 24px}
.operating-grid .group-card .company-logo{height:58px;margin-bottom:20px}
.operating-grid .group-card .company-sector{font-size:11px;line-height:1.35;margin-bottom:16px}
.operating-grid .group-card p{font-size:14px;line-height:1.6;margin-bottom:20px}
.operating-grid .group-card .group-link{min-height:56px;padding:11px 14px;margin-top:auto;font-size:13px}

#contact .lead{max-width:980px}
#contact .contact-grid{grid-template-columns:.92fr 1.08fr;gap:26px}
#contact .card{padding:30px}
.form-error,.success{border-radius:2px;padding:16px 18px;font-size:15px;line-height:1.55}
.form-error{background:rgba(165,67,67,.16);border:1px solid rgba(224,112,112,.48);border-left:4px solid #cf6b6b}
.success{background:rgba(47,125,76,.16);border:1px solid rgba(84,172,113,.45);border-left:4px solid #54ac71}

.footer{padding:64px 0 0}
.footer-grid{grid-template-columns:1.2fr .72fr 1fr 1.15fr;gap:44px;align-items:start}
.footer-brand p{max-width:300px}
.footer-office{margin-top:18px!important;color:#8799a5!important;font-size:13px!important;line-height:1.65}
.footer h3{padding-bottom:12px;margin-bottom:18px;border-bottom:1px solid var(--v42-line);color:var(--gold-400)}
.footer a{margin:8px 0;line-height:1.45}
.credential-list{display:grid;gap:6px}
.credential-list span{display:block}
.footer-contact-links{margin-top:18px;padding-top:14px;border-top:1px solid rgba(255,255,255,.1)}
.footer-contact-links a{display:block}
.footer-platforms{margin-top:44px;padding:30px 0;border-top:1px solid var(--v42-line);border-bottom:1px solid var(--v42-line)}
.footer-platforms>h3{text-align:center;border:0;margin-bottom:24px;padding:0}
.footer-platform-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0}
.footer-platform-grid a{display:flex;flex-direction:column;align-items:center;text-align:center;margin:0;padding:10px 20px;border-right:1px solid rgba(212,166,63,.2)}
.footer-platform-grid a:last-child{border-right:0}
.footer-platform-grid strong{color:#fff;font-size:14px;letter-spacing:.04em}
.footer-platform-grid small{margin-top:7px;color:#9fb1bd;font-size:11px;line-height:1.35}
.footer-bottom{margin-top:0;padding:22px 0 26px;text-align:center}

@media(max-width:1100px){
 .hero-corridors{grid-template-columns:repeat(3,minmax(0,1fr))}
 .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:34px}
 .footer-platform-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 0}
 .footer-platform-grid a:nth-child(2){border-right:0}
}
@media(max-width:760px){
 .hero .container{padding-top:42px;padding-bottom:52px}
 .hero h1{font-size:clamp(35px,10vw,45px);max-width:100%;line-height:1.06}
 .hero .brand-statement{font-size:16px}
 .hero p:not(.brand-statement){font-size:15.5px;line-height:1.62}
 .hero-corridors{grid-template-columns:1fr 1fr;gap:8px}
 #defence-focus .grid2,#contact .contact-grid{grid-template-columns:1fr}
 .operating-grid .group-card{min-height:0}
 .footer{padding-top:48px}
 .footer-grid{grid-template-columns:1fr;gap:30px}
 .footer-platform-grid{grid-template-columns:1fr 1fr}
 .footer-platform-grid a{padding:12px 8px}
}

/* V62 — searchable enterprise resource centre */
.document-hub-tools{
  padding:22px 24px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(135deg,#fff,#f4f7f9);
}
.document-hub-tools>label{
  display:block;
  margin-bottom:9px;
  color:var(--navy-900);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.document-hub-tools>div{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:14px;}
.document-hub-tools input{
  width:100%;
  min-height:50px;
  padding:12px 15px;
  border:1px solid #aebdca;
  border-radius:2px;
  background:#fff;
  color:var(--ink);
  font:inherit;
}
.document-hub-tools input:focus{outline:3px solid rgba(215,178,67,.36);outline-offset:2px;border-color:var(--gold-500);}
.document-hub-tools output{min-width:150px;color:var(--navy-800);font-size:13px;font-weight:800;text-align:end;}
.document-hub-tools>p{margin:12px 0 0;padding:12px 14px;border-inline-start:4px solid var(--gold-500);background:#eef3f6;color:var(--navy-900);font-weight:800;}
.document-hub-tools>p[hidden],.document-card[data-resource-card][hidden]{display:none!important;}
.document-card[data-resource-card]{transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;}
.document-card[data-resource-card]:hover{transform:translateY(-2px);border-color:var(--gold-500);box-shadow:0 12px 28px rgba(5,28,43,.1);}
@media(max-width:680px){
  .document-hub-tools{padding:18px;}
  .document-hub-tools>div{grid-template-columns:1fr;}
  .document-hub-tools output{min-width:0;text-align:start;}
}
@media(max-width:480px){
 .hero-corridors{grid-template-columns:1fr}
 .footer-platform-grid{grid-template-columns:1fr}
 .footer-platform-grid a{border-right:0;border-bottom:1px solid rgba(212,166,63,.16)}
 .footer-platform-grid a:last-child{border-bottom:0}
}
html[dir="rtl"] .footer-platform-grid a{border-right:0;border-left:1px solid rgba(212,166,63,.2)}
html[dir="rtl"] .footer-platform-grid a:last-child{border-left:0}


/* =========================================================
   V43 — multilingual editorial, hero scale and release fixes
   ========================================================= */
.hero .container{padding:60px 0 72px;max-width:1280px}
.hero h1{max-width:790px;font-size:clamp(42px,3.65vw,54px);line-height:1.06;letter-spacing:-.025em;margin-bottom:18px;text-wrap:balance}
.hero .brand-statement{max-width:820px;font-size:clamp(17px,1.35vw,20px);line-height:1.45;font-weight:700;text-transform:none;margin-bottom:14px}
.hero p:not(.brand-statement){max-width:820px;font-size:16px;line-height:1.65;margin-bottom:26px}
.hero-corridors{max-width:820px;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:8px;margin:-4px 0 24px}
.hero-corridors span{min-height:42px;justify-content:center;text-align:center;padding:7px 10px;font-size:11px}
.hero .btn{min-height:46px;padding:11px 20px;font-size:14px}
html[lang="tr"] .hero h1,html[lang="ru"] .hero h1,html[lang="fr"] .hero h1{font-size:clamp(39px,3.35vw,50px);max-width:850px}
html[lang="ar"] .hero h1{font-size:clamp(38px,3.25vw,49px);line-height:1.18;letter-spacing:0;max-width:860px}
html[lang="ar"] .hero .brand-statement,html[lang="ar"] .hero p{line-height:1.8}
@media(max-width:1100px){
 .hero h1{font-size:46px;max-width:720px}.hero .brand-statement{font-size:18px}.hero-corridors{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:760px){
 .hero .container{padding:42px 0 58px}.hero h1,html[lang="tr"] .hero h1,html[lang="ru"] .hero h1,html[lang="fr"] .hero h1,html[lang="ar"] .hero h1{font-size:clamp(32px,10vw,40px);max-width:none;line-height:1.08}
 .hero .brand-statement{font-size:16px}.hero p:not(.brand-statement){font-size:15px}.hero-corridors{grid-template-columns:1fr 1fr}.hero-corridors span:last-child{grid-column:1/-1}.hero .btns{display:grid;grid-template-columns:1fr}.hero .btn{width:100%}
}
@media(max-width:420px){.hero h1,html[lang] .hero h1{font-size:30px}.hero-corridors{grid-template-columns:1fr}.hero-corridors span:last-child{grid-column:auto}}

/* Footer balance */
.site-footer .footer-grid{align-items:start;gap:44px}
.site-footer .footer-brand{max-width:290px}
.site-footer .footer-brand p{max-width:260px;line-height:1.7}
.site-footer .footer-column a,.site-footer .footer-column li{line-height:1.55}
@media(max-width:980px){.site-footer .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:34px}}
@media(max-width:620px){.site-footer .footer-grid{grid-template-columns:1fr;gap:28px}}

/* Document-centre language clarity */
.document-language-note{margin:0 0 22px;padding:12px 14px;border-left:3px solid var(--gold-500);background:rgba(215,178,67,.08);font-size:14px;line-height:1.55}


/* V44 Executive Architecture — concise, evidence-led and globally scalable */
.hero { min-height: 690px; display:flex; align-items:center; }
.hero .container { max-width:1240px; }
.hero h1 { max-width: 820px; font-size: clamp(48px, 5.1vw, 70px); line-height: .99; letter-spacing: -.045em; text-wrap: balance; }
.hero .brand-statement { max-width: 760px; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.42; text-transform:none; letter-spacing:0; }
.hero > .container > p:not(.brand-statement) { max-width: 760px; font-size: 17px; line-height: 1.68; }
.hero-corridors { max-width:900px; gap:8px; }
.hero-corridors span { min-height:44px; display:flex; align-items:center; justify-content:center; padding:9px 14px; font-size:12px; }
.trust-strip { background:#071621; border-top:1px solid rgba(212,166,63,.22); border-bottom:1px solid rgba(212,166,63,.22); }
.trust-strip-inner { min-height:72px; display:grid; grid-template-columns:repeat(5,1fr); align-items:center; gap:1px; }
.trust-strip span { padding:16px 20px; text-align:center; color:#dbe5eb; font-size:12px; font-weight:700; letter-spacing:.055em; text-transform:uppercase; border-right:1px solid rgba(255,255,255,.08); }
.trust-strip span:last-child { border-right:0; }
.section { padding-top:88px; padding-bottom:88px; }
.section h2 { max-width:860px; text-wrap:balance; }
.lead { max-width:880px; }
.market-text-only .market-layout { gap:44px; }
.market-text-only .market-grid { gap:14px; }
#services .grid3 { grid-template-columns:repeat(2,minmax(0,1fr)); max-width:1120px; }
#services .card { min-height:245px; }
#industries .grid3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.operating-grid .group-card { min-height:330px; }
.operating-grid .group-card p { max-width:34ch; }
#process .process-card p { max-width:26ch; margin-inline:auto; }
.documents-section .documents-head { align-items:end; }
.document-card p { max-width:74ch; }
.footer-grid { grid-template-columns:1.15fr .75fr 1fr 1.1fr; }
.footer-brand p { max-width:31ch; }
@media (max-width: 980px) {
 .hero { min-height:620px; }
 .hero h1 { font-size:clamp(44px,7vw,60px); }
 .trust-strip-inner { grid-template-columns:repeat(3,1fr); }
 .trust-strip span:nth-child(3){border-right:0}
 #industries .grid3 { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
 .hero { min-height:auto; padding-top:100px; padding-bottom:64px; }
 .hero h1 { font-size:clamp(38px,11vw,50px); line-height:1.02; }
 .hero .brand-statement { font-size:18px; }
 .hero > .container > p:not(.brand-statement) { font-size:16px; }
 .hero-corridors { grid-template-columns:1fr 1fr; }
 .trust-strip-inner { grid-template-columns:1fr 1fr; }
 .trust-strip span { min-height:56px; display:flex; align-items:center; justify-content:center; padding:12px 8px; font-size:10px; }
 .trust-strip span:nth-child(3){border-right:1px solid rgba(255,255,255,.08)}
 .trust-strip span:nth-child(even){border-right:0}
 #services .grid3, #industries .grid3 { grid-template-columns:1fr; }
 .section { padding-top:64px; padding-bottom:64px; }
}
html[dir="rtl"] .hero h1, html[dir="rtl"] .hero .brand-statement, html[dir="rtl"] .hero > .container > p { max-width:860px; }


/* V45 Precision Layout — navigation collision prevention and information de-duplication */
@media (min-width: 1501px) {
  .header-inner {
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: 16px;
  }
  .logo img { width: 188px; }
  .nav { gap: 11px; font-size: 12px; letter-spacing: .018em; }
  .nav a { padding-inline: 1px; }
  .lang a { min-width: 36px; padding: 7px 6px; }
}
/* Switch to the collision-proof menu before navigation reaches the logo. */
@media (max-width: 1500px) {
  :root { --topbar-height: 0px; --site-header-height: 82px; --header-safe: var(--site-header-height); }
  .topbar { display:none; }
  .site-header { top:0; }
  .header-inner {
    grid-template-columns:minmax(180px,1fr) auto auto;
    grid-template-rows:auto;
    gap:0 14px;
    min-height:var(--site-header-height);
    padding:10px 0;
  }
  .logo { grid-column:1; grid-row:1; }
  .logo img { width:205px; max-width:100%; }
  .lang { grid-column:2; grid-row:1; justify-content:flex-end; }
  .oly-menu-toggle { display:flex; grid-column:3; grid-row:1; }
  .nav {
    position:absolute;
    top:calc(100% + 1px);
    left:0; right:0;
    z-index:100001;
    display:none;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
    padding:12px;
    border:1px solid rgba(215,178,67,.2);
    background:rgba(5,28,43,.99);
    box-shadow:0 18px 42px rgba(3,19,30,.32);
    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: 760px) {
  .header-inner { grid-template-columns:minmax(145px,1fr) auto; gap:8px; }
  .logo img { width:175px; }
  .lang { display:none; }
  .oly-menu-toggle { grid-column:2; }
  .site-header.menu-open .nav { grid-template-columns:1fr; }
}
.footer-grid-simplified { grid-template-columns:1.05fr .75fr 1fr .9fr; }
.footer-contact-links-clean { margin-top:0; padding-top:0; border-top:0; }
.footer-contact-links-clean a { margin:0 0 12px; }
.footer-office,.credential-list { display:none !important; }
@media(max-width:980px){.footer-grid-simplified{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:620px){.footer-grid-simplified{grid-template-columns:1fr;}}


/* V50 Enterprise Final — restrained global corporate system */
.topbar,.trust-strip{display:none!important}
.site-header{top:0!important;background:rgba(3,13,24,.97);backdrop-filter:blur(16px)}
.header-inner{min-height:86px;display:grid!important;grid-template-columns:minmax(190px,250px) minmax(0,1fr) auto;gap:26px;align-items:center}
.logo{position:relative;z-index:4;display:block;max-width:240px;overflow:hidden}
.logo img{display:block;width:100%;height:auto;max-height:32px;object-fit:contain;object-position:left center}
.nav{display:flex;justify-content:center;align-items:center;gap:clamp(14px,1.25vw,25px);min-width:0}
.nav a{font-size:12.5px;letter-spacing:.055em;white-space:nowrap}
.lang{gap:5px;flex-shrink:0}.lang a{width:40px;height:40px;font-size:12px}
.hero{min-height:720px;padding:clamp(120px,14vh,168px) 0 86px;background-position:center right}
.hero .container{max-width:1320px}.hero h1{max-width:820px;font-size:clamp(48px,5.1vw,72px);line-height:.98;letter-spacing:-.045em;text-wrap:balance}
.hero .brand-statement{max-width:760px;font-size:clamp(18px,1.5vw,22px);line-height:1.42;text-transform:none;letter-spacing:0}
.hero p:not(.brand-statement){max-width:730px;font-size:17px;line-height:1.65}
.hero-corridors{display:none!important}
.btns{margin-top:30px}.btn{min-height:50px;padding:14px 24px}
.section{padding:clamp(72px,8vw,112px) 0}.section h2{font-size:clamp(34px,3.8vw,52px);line-height:1.08;letter-spacing:-.035em}.lead{max-width:820px;font-size:19px;line-height:1.65}
.grid3{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.grid3 .card{min-height:250px;padding:34px}
.group-parent-card{padding:30px 34px}.group-card{padding:30px}.group-card p{font-size:15.5px;line-height:1.58}.group-card .group-link{margin-top:24px}
.process-grid p{font-size:14.5px;line-height:1.55}.process-grid h3{font-size:18px}
.footer{padding-top:70px}.footer-grid-simplified{grid-template-columns:1.15fr .9fr 1.15fr .9fr;gap:54px}.footer-brand p{max-width:300px}.footer-platforms{margin-top:46px;padding-top:32px}.footer-platform-grid a{padding:18px 12px}.footer-platform-grid small{font-size:11px}
.info-columns-single{grid-template-columns:1fr!important}.contact-summary{max-width:520px;line-height:1.65}.contact-grid{align-items:start}.form-error{font-size:15px;line-height:1.55}
.documents-head{align-items:end}.document-card{padding:24px}.document-card h4{font-size:18px}
[dir="rtl"] .logo img{object-position:right center}
@media(max-width:1420px){.header-inner{grid-template-columns:minmax(180px,220px) 1fr auto;gap:18px}.nav{gap:14px}.nav a{font-size:11.5px}.lang a{width:36px;height:36px}.logo{max-width:215px}}
@media(max-width:1180px){.oly-menu-toggle{display:flex!important}.nav{display:none!important}.site-header.menu-open .nav{display:flex!important}.header-inner{grid-template-columns:1fr auto auto}.logo{max-width:225px}.hero{min-height:auto}.hero h1{font-size:clamp(46px,7vw,64px)}}
@media(max-width:760px){.header-inner{min-height:74px;gap:12px}.logo{max-width:175px}.lang{display:none}.hero{padding:112px 0 64px;background-position:64% center}.hero h1{font-size:clamp(38px,11vw,52px);line-height:1.01}.hero .brand-statement{font-size:18px}.hero p:not(.brand-statement){font-size:16px}.btns{display:grid;grid-template-columns:1fr}.btn{width:100%}.grid3{grid-template-columns:1fr}.grid3 .card{min-height:0;padding:26px}.footer-grid-simplified{grid-template-columns:1fr;gap:34px}.footer-platform-grid{grid-template-columns:1fr 1fr}.section{padding:66px 0}.section h2{font-size:36px}}
@media(max-width:430px){.logo{max-width:150px}.footer-platform-grid{grid-template-columns:1fr}.hero h1{font-size:39px}}


/* V52 Smart Navigation — final responsive header behaviour */
:root{--site-header-height:86px;--header-safe:86px}
html{scroll-padding-top:calc(var(--site-header-height) + 16px)}
body.navigation-open{overflow:hidden}
.site-header{
  transform:translateY(0);
  transition:transform .32s cubic-bezier(.22,.61,.36,1),background-color .25s ease,box-shadow .25s ease;
  will-change:transform;
}
.site-header.header-hidden{transform:translateY(calc(-100% - 2px))}
.header-inner{
  grid-template-columns:minmax(180px,1fr) auto auto!important;
  min-height:var(--site-header-height)!important;
  gap:14px!important;
}
.logo{grid-column:1;grid-row:1;max-width:235px!important}
.lang{grid-column:2;grid-row:1;display:flex!important;justify-content:flex-end}
.oly-menu-toggle{display:flex!important;grid-column:3;grid-row:1;z-index:100004}
.nav{
  position:absolute!important;
  top:calc(100% + 1px)!important;
  left:max(24px,calc((100vw - 1440px)/2))!important;
  right:max(24px,calc((100vw - 1440px)/2))!important;
  z-index:100003!important;
  display:none!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:8px!important;
  padding:16px!important;
  border:1px solid rgba(215,178,67,.28)!important;
  background:rgba(4,19,31,.985)!important;
  box-shadow:0 24px 70px rgba(0,0,0,.48)!important;
  backdrop-filter:blur(18px)!important;
  white-space:normal!important;
}
.site-header.menu-open .nav{display:grid!important}
.nav a{
  min-height:52px!important;
  padding:14px 16px!important;
  border:1px solid rgba(255,255,255,.11)!important;
  background:rgba(255,255,255,.035)!important;
  font-size:13px!important;
  letter-spacing:.07em!important;
  justify-content:flex-start!important;
}
.nav a::after{display:none!important}
.nav a:hover,.nav a.active{background:rgba(215,178,67,.12)!important;border-color:rgba(215,178,67,.5)!important}
.menu-backdrop{
  position:fixed;
  inset:0;
  z-index:99997;
  background:rgba(0,8,15,.58);
  backdrop-filter:blur(3px);
  opacity:1;
}
.menu-backdrop[hidden]{display:none!important}
@media(max-width:900px){
  .logo{max-width:205px!important}
  .lang a{width:36px;height:36px;padding:6px;font-size:11px}
  .nav{grid-template-columns:repeat(2,minmax(0,1fr))!important;left:18px!important;right:18px!important}
}
@media(max-width:680px){
  :root{--site-header-height:74px;--header-safe:74px}
  .header-inner{grid-template-columns:minmax(0,1fr) auto!important;gap:10px!important}
  .logo{max-width:170px!important}
  .lang{display:none!important}
  .oly-menu-toggle{grid-column:2!important}
  .nav{
    position:fixed!important;
    top:0!important;
    right:0!important;
    bottom:0!important;
    left:auto!important;
    width:min(88vw,380px)!important;
    height:100dvh!important;
    grid-template-columns:1fr!important;
    align-content:start!important;
    overflow-y:auto!important;
    padding:calc(var(--site-header-height) + 22px) 18px 28px!important;
    border-width:0 0 0 1px!important;
    transform:translateX(0);
  }
  .nav a{min-height:50px!important}
  .site-header.menu-open .oly-menu-toggle{position:fixed;right:18px;top:16px}
}
@media(prefers-reduced-motion:reduce){
  .site-header{transition:none!important}
}


/* V53 — visible menu affordance and corporate contact refinement */
.oly-menu-toggle:hover,.oly-menu-toggle:focus-visible{
  border-color:var(--gold-500);
  background:rgba(205,169,74,.10);
}
.oly-menu-toggle:focus-visible{outline:2px solid var(--gold-400);outline-offset:3px}
.info-card address{
  margin:0 0 24px;
  color:rgba(255,255,255,.78);
  font-style:normal;
  font-size:16px;
  line-height:1.65;
}
.contact-summary{max-width:48ch;color:rgba(255,255,255,.78)}
@media(max-width:680px){
  .oly-menu-toggle{min-width:94px!important;width:auto!important;height:40px!important;padding:0 11px!important}
  .oly-menu-toggle .menu-label{font-size:10px}
  .site-header.menu-open .oly-menu-toggle{right:14px;top:17px}
}


/* V54 final corporate editorial and resource-centre polish */
.hero h1{max-width:980px;letter-spacing:-.035em;line-height:.98}
.hero p{max-width:900px}
.documents .lead,.doc-intro{max-width:920px}
.doc-card h3{line-height:1.28}
.doc-card p{max-width:68ch}
.contact-card address{font-style:normal;line-height:1.65}
@media (max-width:1100px){.hero h1{font-size:clamp(3rem,7vw,5.2rem)}}
@media (max-width:720px){.hero h1{font-size:clamp(2.35rem,11vw,3.6rem);line-height:1.02}.hero p{font-size:1rem}.section h2{line-height:1.08}}


/* V55 — registry clarity, accessible navigation and contrast */
.mobile-lang{display:none}
.registry-link{
  color:#72570b;
  font-weight:800;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}
.registry-link:hover{color:var(--navy-900)}
.identifier-card{border-left:4px solid var(--gold-500)}
.identifier-note{
  max-width:88ch;
  color:#42586a!important;
  font-size:13px!important;
  line-height:1.65!important;
}
.legal-content h3{margin:30px 0 12px;color:var(--ink);font-size:18px}
#main-content:focus{outline:none}
@media(max-width:680px){
  .mobile-lang{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.16);
  }
  .mobile-lang a{
    min-width:48px!important;
    min-height:44px!important;
    display:grid!important;
    place-items:center;
    padding:8px!important;
    border:1px solid rgba(255,255,255,.18)!important;
    background:rgba(255,255,255,.04)!important;
    font-size:12px!important;
    font-weight:800;
    color:#fff!important;
  }
  .mobile-lang a.active{
    border-color:var(--gold-500)!important;
    background:rgba(205,169,74,.16)!important;
    color:var(--gold-400)!important;
  }
}


/* V56 — persistent navigation and optically balanced group marks */
.site-header,
.site-header.header-hidden{
  transform:translateY(0)!important;
}
.site-header{
  transition:background-color .25s ease,box-shadow .25s ease!important;
  will-change:auto!important;
  box-shadow:0 1px 0 rgba(205,169,74,.24),0 10px 28px rgba(0,0,0,.16);
}
.oly-menu-toggle{
  border-color:rgba(255,255,255,.36)!important;
  background:rgba(255,255,255,.055)!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);
}
.oly-menu-toggle:hover,
.oly-menu-toggle:focus-visible,
.site-header.menu-open .oly-menu-toggle{
  border-color:var(--gold-500)!important;
  background:rgba(205,169,74,.14)!important;
}
.operating-grid .company-logo-wrap{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:82px!important;
  height:82px;
  margin-bottom:18px!important;
  overflow:visible;
}
.operating-grid .company-logo-wrap img{
  display:block;
  width:86%!important;
  max-width:520px!important;
  height:auto!important;
  max-height:none!important;
  object-fit:contain!important;
  object-position:center!important;
  transform-origin:center;
}
.operating-grid .company-olymedica .company-logo-wrap img{
  width:94%!important;
  max-width:568px!important;
  transform:translate(4%,-14%);
}
@media(max-width:700px){
  .operating-grid .company-logo-wrap{
    min-height:70px!important;
    height:70px;
  }
  .operating-grid .company-logo-wrap img{
    width:88%!important;
  }
.operating-grid .company-olymedica .company-logo-wrap img{
  width:96%!important;
}
}


/* V58 — global enterprise forms, validation and consent controls */
.screen-reader-text{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}
#contact .contact-grid{margin-top:36px;}
.form-card .form-intro{
  max-width:720px;
  margin:0 0 8px;
  color:#d0dde5;
  font-size:14px;
  line-height:1.65;
}
.required-note{
  margin:0 0 22px!important;
  color:#afc1cc!important;
  font-size:12.5px!important;
}
.form-fields-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px 20px;
}
.form-field{min-width:0;}
.form-field-full{grid-column:1/-1;}
.form-card .form-field label{
  display:block;
  margin:0 0 7px;
  color:#fff;
  font-size:13px;
  font-weight:800;
  line-height:1.4;
}
.required-marker{color:#f2c75c;font-weight:900;}
.optional-marker{
  margin-inline-start:6px;
  color:#9fb1bd;
  font-size:11px;
  font-weight:500;
}
.form-card .form-field input:not([type="checkbox"]),
.form-card .form-field textarea,
.form-card .form-field select{
  width:100%;
  min-height:50px;
  display:block;
  margin:0;
  padding:13px 14px;
  border:1px solid #bfccd5;
  border-radius:2px;
  background:#fff;
  color:#102534;
  font:inherit;
  line-height:1.4;
  outline:0;
}
.form-card .form-field select{
  padding-inline-end:38px;
  cursor:pointer;
}
.form-card .form-field textarea{min-height:164px;resize:vertical;}
.form-card .form-field input::placeholder,
.form-card .form-field textarea::placeholder{color:#667985;opacity:1;}
.form-card .form-field input:focus,
.form-card .form-field textarea:focus,
.form-card .form-field select:focus{
  border-color:#e2bb4f;
  box-shadow:0 0 0 3px rgba(226,187,79,.25);
}
.form-card .form-field.has-error input:not([type="checkbox"]),
.form-card .form-field.has-error textarea,
.form-card .form-field.has-error select{
  border-color:#f08b8b;
  box-shadow:0 0 0 2px rgba(240,139,139,.16);
}
.field-meta{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-top:7px;
  color:#afc1cc;
  font-size:11.5px;
  line-height:1.5;
}
.field-meta [data-character-count]{flex:0 0 auto;font-variant-numeric:tabular-nums;}
.field-error{
  display:block;
  margin-top:7px;
  color:#ffd1d1;
  font-size:12.5px;
  font-weight:750;
  line-height:1.45;
}
.field-error[hidden],.form-error-summary[hidden]{display:none!important;}
.privacy-field{
  padding:16px 17px;
  border:1px solid rgba(215,178,67,.25);
  border-radius:2px;
  background:rgba(255,255,255,.045);
}
.privacy-field label{
  display:flex!important;
  gap:11px;
  align-items:flex-start;
  margin:0!important;
  font-weight:500!important;
}
.privacy-field input[type="checkbox"]{
  width:20px!important;
  height:20px!important;
  flex:0 0 20px;
  margin:1px 0 0!important;
  accent-color:#d7b243;
}
.privacy-field a{color:#f0cb68;text-decoration:underline;text-underline-offset:3px;}
.form-error-summary{margin:18px 0 22px;}
.form-error-summary h4{margin:0 0 7px!important;color:#fff!important;font-size:16px!important;text-transform:none!important;letter-spacing:0!important;}
.form-error-summary p{margin:0 0 8px!important;color:#ffe7e7!important;}
.form-error-summary ul{margin:0;padding-inline-start:20px;}
.form-error-summary li{margin:5px 0;}
.form-error-summary a{color:#fff;text-decoration:underline;text-underline-offset:3px;}
.form-card .form-submit{
  width:100%;
  min-height:52px;
  margin-top:20px;
}
.form-card .form-submit:disabled{cursor:progress;opacity:.74;}
.success:focus,.form-error-summary:focus{outline:3px solid rgba(240,203,104,.75);outline-offset:3px;}
html[dir="rtl"] .form-error,html[dir="rtl"] .success{border-left-width:1px;border-right-width:4px;}

.consent-panel fieldset{min-width:0;margin:0;padding:0;border:0;}
.footer-consent-link{
  display:block;
  margin:7px 0;
  padding:0;
  border:0;
  background:transparent;
  color:#d5e0e6;
  font:inherit;
  font-size:14px;
  line-height:1.45;
  text-align:start;
  text-decoration:none;
  cursor:pointer;
}
.footer-consent-link:hover,.footer-consent-link:focus-visible{color:var(--gold-400);text-decoration:underline;text-underline-offset:4px;}

@media(max-width:760px){
  .form-fields-grid{grid-template-columns:1fr;gap:16px;}
  .form-field-full{grid-column:auto;}
  .field-meta{display:block;}
  .field-meta [data-character-count]{display:block;margin-top:5px;text-align:end;}
}

/* V63 — final accessibility and group-brand normalization */
.registry-link{
  color:#f3d77c!important;
}
.registry-link:hover,
.registry-link:focus-visible{
  color:#ffffff!important;
}
.identifier-note{
  color:#d6e2e9!important;
}
.num{
  color:#f0ca68!important;
}
.group-parent-card{
  grid-template-columns:minmax(360px,430px) minmax(0,1fr) minmax(180px,220px);
}
.operating-grid{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
}
.group-card .company-logo-wrap,
.operating-grid .company-logo-wrap{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:100px!important;
  height:100px!important;
  overflow:visible!important;
}
.group-card .company-logo-wrap img,
.operating-grid .company-logo-wrap img,
.operating-grid .company-olymedica .company-logo-wrap img{
  display:block!important;
  width:min(100%,430px)!important;
  height:auto!important;
  max-width:430px!important;
  max-height:none!important;
  object-fit:contain!important;
  object-position:center!important;
  transform:none!important;
}
@media(max-width:900px){
  .group-parent-card{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .operating-grid{
    grid-template-columns:1fr!important;
  }
  .group-card .company-logo-wrap,
  .operating-grid .company-logo-wrap{
    min-height:84px!important;
    height:84px!important;
  }
  .group-card .company-logo-wrap img,
  .operating-grid .company-logo-wrap img,
  .operating-grid .company-olymedica .company-logo-wrap img{
    width:min(100%,290px)!important;
    max-width:290px!important;
  }
}
