/*
Theme Name: OLYVENRA Enterprise Corporate v27.22
Theme URI: https://olyvenra.com
Author: OLYVENRA LTD
Description: Multilingual corporate website for OLYVENRA LTD.
Version: 27.22
Text Domain: olyvenra
*/

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

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

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

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

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

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

/* Shared sections */
.section {
  padding: 84px 0;
  border-bottom: 1px solid rgba(16, 35, 52, .08);
  background: var(--white);
  color: var(--ink);
}
.section.alt { background: var(--surface); }
.section.compact { padding: 18px 0; }
.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; }

/* Trust strip */
.section.compact {
  border-color: rgba(255, 255, 255, .08);
  background: linear-gradient(90deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.trust {
  min-width: 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(215, 178, 67, .18);
  background: rgba(255, 255, 255, .04);
}
.trust:first-child { padding-left: 18px; }
.trust:last-child { padding-right: 18px; }
.trust .icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 178, 67, .6);
  background: rgba(215, 178, 67, .08);
  color: var(--gold-400);
  font-size: 0;
}
.trust .icon::before { content: "✓"; font-size: 14px; font-weight: 900; }
.trust strong { display: block; margin-bottom: 2px; color: var(--white); font-size: 15px; line-height: 1.25; }
.trust span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: normal;
  word-break: normal;
}

/* 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; }

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

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

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

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

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

/* Arabic / RTL */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .topbar .container,
html[dir="rtl"] .header-inner,
html[dir="rtl"] .footer-grid { direction: ltr; }
html[dir="rtl"] .topbar span:first-child,
html[dir="rtl"] .footer-grid > * { direction: rtl; text-align: right; }
html[dir="rtl"] .nav,
html[dir="rtl"] .lang,
html[dir="rtl"] main,
html[dir="rtl"] .footer { direction: rtl; }
html[dir="rtl"] .hero {
  background:
    linear-gradient(270deg, rgba(3, 19, 30, .97) 0%, rgba(3, 19, 30, .88) 48%, rgba(3, 19, 30, .38) 100%),
    url(assets/hero-london-v16.jpg) 28% center / cover no-repeat;
}
html[dir="rtl"] .market-card::before { right: 0; left: auto; }
html[dir="rtl"] .documents-notice {
  border-left-width: 1px;
  border-right: 4px solid var(--gold-500);
}
html[dir="rtl"] button.document-tab {
  align-items: flex-end;
  border-right: 0;
  border-left: 1px solid var(--line-light);
  text-align: right;
}
html[dir="rtl"] button.document-tab:last-child { border-left: 0; }
html[dir="rtl"] .document-card {
  direction: rtl;
  border-right: 0;
}
html[dir="rtl"] .document-card:nth-child(odd) { border-left: 1px solid var(--line-light); }
html[dir="rtl"] .document-row {
  direction: rtl;
}
html[dir="rtl"] .checks p { padding-right: 28px; padding-left: 0; }
html[dir="rtl"] .checks p::before { right: 0; left: auto; }
html[dir="rtl"] .why-points span { padding-right: 34px; padding-left: 12px; }
html[dir="rtl"] .why-points span::before { right: 13px; left: auto; }
html[dir="rtl"] #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; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-layout { grid-template-columns: 1fr; gap: 34px; }
  .market-layout > div:first-child { position: static; }
  .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.compact { padding: 18px 0; }
  .section h2 { font-size: 36px; }
  .lead { font-size: 17px; }
  .trust-grid, .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; }
  .trust { padding: 16px; border-right: 1px solid rgba(215, 178, 67, .18); border-bottom: 1px solid rgba(215, 178, 67, .18); }
  .trust:last-child { border-bottom: 0; }
  .market-grid { grid-template-columns: 1fr; }
  .market-card:nth-child(5) { grid-column: auto; }
  .market-card { 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 enterprise positioning section */
.enterprise-positioning{background:linear-gradient(180deg,#07111f 0%,#0b1b2e 100%);color:#fff;position:relative;overflow:hidden}
.enterprise-positioning:before{content:"";position:absolute;inset:-20% -10% auto auto;width:520px;height:520px;border-radius:999px;background:radial-gradient(circle,rgba(202,170,92,.18),rgba(202,170,92,0) 68%);pointer-events:none}
.enterprise-positioning .container{position:relative;z-index:1}.section-heading{max-width:980px;margin:0 auto 28px;text-align:center}.section-heading .kicker{letter-spacing:.18em;text-transform:uppercase;color:#d8bd78;font-weight:700;font-size:.78rem;margin-bottom:12px}.enterprise-positioning h2{color:#fff}.enterprise-positioning .lead{color:rgba(255,255,255,.82)}.enterprise-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.enterprise-card{background:rgba(255,255,255,.07);border:1px solid rgba(216,189,120,.28);box-shadow:0 24px 60px rgba(0,0,0,.24)}.enterprise-card h3{color:#f3d996}.enterprise-card p{color:rgba(255,255,255,.8)}@media(max-width:1000px){.enterprise-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.enterprise-grid{grid-template-columns:1fr}.section-heading{text-align:left}}

/* v34 Fortune-grade sections */
.insights-section{background:linear-gradient(180deg,#f8f5ed 0%,#ffffff 100%)}
.insights-grid{align-items:stretch}.insight-card{border-left:4px solid #caaa5c}.insight-card h3{font-size:1.05rem;line-height:1.3}.insight-card p{font-size:.95rem}.hero .btns .btn,.btn{letter-spacing:.01em}.why-points span{line-height:1.55}.process-card h3,.card h3{letter-spacing:-.01em}
#chairman .card,#methodology .card{border:1px solid rgba(202,170,92,.28)}
#values .card h3:before{content:"";display:block;width:34px;height:3px;background:#caaa5c;margin-bottom:14px;border-radius:2px}
@media(max-width:720px){.insights-section .section-heading{text-align:left}.insight-card{border-left-width:3px}}


/* v35 quality fixes: stronger contrast, executive layout, no empty value cards */
.leadership-section{background:linear-gradient(180deg,#ffffff 0%,#f8fafb 100%)}
.leadership-grid{display:grid;grid-template-columns:minmax(0,0.92fr) minmax(0,1.08fr);gap:42px;align-items:start}
.leadership-copy .lead{max-width:760px;color:#405262}
.purpose-panel{border:1px solid rgba(202,170,92,.35);background:#071923;color:#fff;padding:42px;box-shadow:0 24px 70px rgba(3,19,30,.20)}
.purpose-panel h3{margin:0 0 24px;color:#fff;font-size:28px;letter-spacing:-.02em}
.purpose-grid{display:grid;gap:18px}
.purpose-grid article{padding:24px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.045)}
.purpose-grid article span{display:block;color:#d2b56d;font-weight:800;text-transform:uppercase;letter-spacing:.08em;font-size:12px;margin-bottom:10px}
.purpose-grid article p{margin:0;color:#dbe5ea;font-size:18px;line-height:1.65}
.values-section .section-heading{margin-bottom:28px}
.values-grid{align-items:stretch}
.value-card{min-height:210px;border:1px solid rgba(202,170,92,.24);background:#fff;box-shadow:0 16px 40px rgba(3,19,30,.06)}
.value-card h3{font-size:22px;margin-bottom:14px;color:#061622}
.value-card h3:before{content:"";display:block;width:38px;height:3px;background:#caaa5c;margin-bottom:18px;border-radius:3px}
.value-card p{color:#425566;font-size:15.5px;line-height:1.65;margin:0}
#values .card{padding:30px}
#chairman .why-points span{color:#1f3342;background:#fff}
.topbar{font-size:12px;letter-spacing:.08em;text-transform:uppercase}
.footer-bottom{color:#9fb0bc;font-size:13px;line-height:1.5}
@media(max-width:900px){.leadership-grid{grid-template-columns:1fr}.purpose-panel{padding:28px}.purpose-grid article p{font-size:16px}.value-card{min-height:0}}


/* v36 Executive Edition refinements */
:root { --container: 1280px; }
.nav { gap: 12px; font-size: 13px; }
.hero { min-height: calc(660px + var(--header-safe)); background-position: 68% center; }
.hero h1 { max-width: 930px; font-size: clamp(42px, 5.2vw, 72px); letter-spacing: -.035em; }
.hero .brand-statement { max-width: 900px; font-size: clamp(20px, 2vw, 28px); color: #f2d37b; }
.hero p { max-width: 820px; }
.section { padding: 96px 0; }
.section h2 { font-size: clamp(34px, 4vw, 58px); letter-spacing: -.025em; }
.lead { color: #41566a; }
.card p, .market-card p, .process-card p, .document-card p { color: #42586b; }
.grid3 { gap: 24px; }
.card { border-color: #dfe7ec; box-shadow: 0 8px 24px rgba(3,19,30,.055); }
.card:hover { border-color: rgba(205,169,74,.55); }
.leadership-section { background: linear-gradient(135deg,#071f30,#f7f9fb 48%,#fff); }
.leadership-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: stretch; }
.leadership-copy, .purpose-panel { min-height: 100%; }
.leadership-copy { padding: 46px; background: #fff; border-left: 5px solid var(--gold-500); box-shadow: var(--shadow-sm); }
.purpose-panel { padding: 46px; background: var(--navy-900); color: #fff; box-shadow: var(--shadow-lg); }
.purpose-panel h3 { color: #fff; margin-top: 0; font-size: 28px; }
.purpose-grid { display: grid; gap: 22px; }
.purpose-grid article { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.16); }
.purpose-grid span { display: block; color: var(--gold-400); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .04em; margin-bottom: 8px; }
.purpose-grid p { margin: 0; color: #d7e3ea; font-size: 17px; }
.values-section .section-heading { max-width: 760px; }
.values-grid .value-card { min-height: 220px; border-top: 4px solid var(--gold-500); }
.values-grid .value-card h3 { font-size: 24px; }
.enterprise-positioning { background: #fff; }
.enterprise-grid .card, #strategic-platforms .card { min-height: 245px; }
#strategic-platforms { background: linear-gradient(180deg,#f8fafb,#fff); }
.insights-section { background: #f4f7f9; }
.insight-card { min-height: 235px; }
.documents-section .documents-head { align-items: start; }
.footer-bottom { color: #aebdc7; font-size: 13px; }
@media (max-width: 1180px) { .nav { gap: 9px; font-size: 12.5px; } .header-inner { grid-template-columns: 190px minmax(0,1fr) auto; gap:18px;} .logo img{width:190px;} }
@media (max-width: 900px) { .leadership-grid { grid-template-columns: 1fr; } .leadership-copy, .purpose-panel { padding: 30px; } }

/* Release 1.0 executive polish: reduced repetition, stronger hierarchy, premium spacing */
.topbar .container{justify-content:center;text-align:center}.topbar .container span:last-child{display:none}
.hero:after{background:linear-gradient(90deg,rgba(4,17,29,.92),rgba(4,17,29,.72) 45%,rgba(4,17,29,.36) 75%,rgba(4,17,29,.18))}
.hero h1{max-width:860px}.hero .brand-statement{max-width:820px}.hero p{max-width:780px;color:rgba(255,255,255,.86)}
.section-heading{max-width:920px}.section h2{line-height:1.04}.lead{line-height:1.7}
.card{border-radius:0}.card h3{line-height:1.22}.card p{line-height:1.72}
.trust-grid{box-shadow:0 16px 55px rgba(3,19,30,.08)}
.leadership-section{background:#f7f9fb}.leadership-copy{border-left:0;border-top:5px solid var(--gold-500)}
.purpose-panel{background:linear-gradient(145deg,#061622,#0b2a3d)}
.values-grid .value-card{box-shadow:0 10px 32px rgba(3,19,30,.055)}
.value-card p{color:#334a5d}.value-card h3{color:#071923}
.enterprise-positioning{background:#071923;color:#fff}.enterprise-positioning h2{color:#fff}.enterprise-positioning .lead{color:rgba(255,255,255,.82)}.enterprise-card{background:rgba(255,255,255,.065);color:#fff}.enterprise-card p{color:rgba(255,255,255,.78)}
#strategic-platforms .card,#services .card,#industries .card{min-height:250px}
.credential-badges span{background:#fff;border:1px solid rgba(202,170,92,.25);box-shadow:0 10px 30px rgba(3,19,30,.045)}
.documents-section{background:#f8fafb}.document-card{background:#fff}.documents-notice{background:#071923;color:#fff}.documents-notice span{color:rgba(255,255,255,.78)}
.footer-grid{grid-template-columns:1.25fr .9fr .9fr 1fr}.footer a{line-height:1.9}.footer p{color:#b6c5cf}.footer h3{letter-spacing:.08em;text-transform:uppercase;font-size:12px;color:#d2b56d}
@media(max-width:900px){.topbar .container{justify-content:flex-start;text-align:left}.footer-grid{grid-template-columns:1fr}.hero h1{max-width:13ch}}


/* Release 1.1 deep quality corrections */
#methodology{display:none!important}
.corporate-assurance-section{background:#fff}
.corporate-assurance-section .section-heading{max-width:880px;margin-bottom:28px}
.premium-badges{margin-top:22px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.premium-badges span{background:#f7f9fb;border:1px solid #dfe7ec;padding:18px 20px;color:#23394a;min-height:76px;display:flex;flex-direction:column;justify-content:center}
.premium-badges strong{display:block;color:#061622;font-size:12px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:6px}
.process-card h3{color:#061622;font-weight:900}.process-card p{color:#31485b}.process-card>div{background:linear-gradient(135deg,#caaa5c,#f0d477);color:#061622}
.topbar .container{font-size:12px;letter-spacing:.04em}.footer-grid>div:nth-child(4) p strong{display:none}.footer-grid>div:nth-child(4) br:first-of-type{display:none}
@media(max-width:1280px){
  .nav{grid-template-columns:repeat(3,minmax(0,1fr));padding:10px;gap:6px;background:rgba(5,28,43,.98)}
  .nav a{min-height:38px;padding:9px 10px;font-size:14px;line-height:1.2}
}
@media(max-width:900px){
  .nav{grid-template-columns:1fr;max-height:calc(100vh - var(--site-header-height) - 12px);overflow:auto;padding:10px 14px}
  .nav a{min-height:36px;padding:9px 12px;font-size:15px}
  .premium-badges{grid-template-columns:1fr}
  .hero h1{font-size:clamp(34px,9vw,52px)}
  .hero .brand-statement{font-size:clamp(18px,5vw,23px)}
}


/* Release 1.2 deep QA: working insights anchor, mobile navigation, stronger typography */
#insights { scroll-margin-top: calc(var(--header-safe) + 22px); }
.insights-section { background: linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%); }
.insights-grid { display: grid; align-items: stretch; }
.insight-card { min-height: 0; border-left: 4px solid var(--gold-500); background: #fff; }
.insight-card h3 { color: var(--navy-950); font-size: 22px; margin-bottom: 12px; }
.insight-card p { color: #344b5f; line-height: 1.72; }
#process .process-grid { align-items: stretch; }
.process-card { background: #fff; border: 1px solid #dfe7ec; padding: 24px; box-shadow: 0 8px 24px rgba(3,19,30,.045); }
.process-card > div { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; margin-bottom: 18px; }
.process-card h3 { font-size: 22px; margin-bottom: 10px; }
.process-card p { font-size: 16px; line-height: 1.68; }
.footer-grid { grid-template-columns: 1.2fr .9fr .9fr 1fr; }
.footer-bottom { max-width: 980px; color: #b8c7d0; }
@media (max-width: 1280px) {
  .site-header { backdrop-filter: blur(18px); }
  .header-inner { grid-template-columns: minmax(170px,1fr) auto auto; }
  .nav {
    left: auto;
    right: 0;
    width: min(520px, calc(100vw - 24px));
    grid-template-columns: 1fr !important;
    padding: 12px;
    border: 1px solid rgba(215,178,67,.28);
    box-shadow: 0 24px 70px rgba(0,0,0,.34);
  }
  .nav a {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.25;
    display: flex;
    align-items: center;
    border-color: rgba(255,255,255,.14);
  }
}
@media (max-width: 760px) {
  :root { --site-header-height: 72px; }
  .topbar { display: none !important; }
  .header-inner { grid-template-columns: minmax(145px,1fr) auto auto; grid-template-rows: auto; gap: 8px; padding: 8px 0; }
  .logo img { width: min(176px, 42vw); }
  .lang { grid-column: 2; grid-row: 1; gap: 4px; }
  .lang a { min-width: 30px; padding: 5px 5px; font-size: 10px; }
  .oly-menu-toggle { grid-column: 3; grid-row: 1; width: 42px; height: 42px; min-width: 42px; }
  .nav { top: calc(100% + 1px); width: min(420px, calc(100vw - 18px)); max-height: calc(100vh - var(--site-header-height) - 16px); overflow: auto; }
  .hero .container { padding: 48px 0 56px; }
  .hero h1 { max-width: 14ch; font-size: clamp(32px, 8.4vw, 48px); }
  .hero .brand-statement { font-size: 18px; }
  .section { padding: 58px 0; }
  .section h2 { font-size: clamp(30px, 8vw, 42px); }
  .process-card, .insight-card, .card { padding: 22px; }
}
@media (max-width: 430px) {
  :root { --site-header-height: 70px; }
  .header-inner { grid-template-columns: minmax(128px,1fr) auto auto; grid-template-rows: auto; }
  .logo img { width: min(150px, 37vw); }
  .lang { grid-column: 2; grid-row: 1; flex-wrap: nowrap; gap: 3px; }
  .lang a { min-width: 27px; padding: 4px 4px; font-size: 9px; }
  .oly-menu-toggle { grid-column: 3; grid-row: 1; }
  .nav { width: calc(100vw - 16px); left: 8px; right: 8px; }
  .hero h1 { max-width: 13ch; }
}


/* RC1 launch readiness: mobile polish, stable anchors, premium spacing */
html { scroll-padding-top: calc(var(--header-safe) + 18px); }
#insights, #documents, #process, #contact, #services, #strategic-platforms { scroll-margin-top: calc(var(--header-safe) + 24px); }
.nav a { border-radius: 1px; }
.site-header.menu-open .nav { display: grid; }
@media (max-width: 1280px) {
  body.menu-lock { overflow: hidden; }
  .nav { position: absolute; top: calc(100% + 1px); display: none; }
  .site-header.menu-open .nav { display: grid; }
  .nav a { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); }
  .nav a.active { background: rgba(205,169,74,.14); border-color: rgba(205,169,74,.42); color: var(--gold-400); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 30px, var(--container)); }
  .header-inner { min-height: var(--site-header-height); }
  .nav { width: calc(100vw - 18px); right: 9px; left: auto; max-height: min(72vh, calc(100vh - var(--site-header-height) - 18px)); padding: 9px; }
  .nav a { min-height: 40px; padding: 9px 11px; font-size: 14px; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .hero h1 { max-width: 15ch; }
  .hero p { max-width: 66ch; }
  .btns { gap: 10px; }
  .btn { width: 100%; justify-content: center; text-align: center; }
  .grid2, .grid3, .grid4, .market-layout, .contact-grid, .group-grid { grid-template-columns: 1fr !important; }
  .section-heading { text-align: left; }
  .documents-head { grid-template-columns: 1fr !important; }
  .document-tabs { border-right: 0; }
  .document-card { grid-template-columns: 1fr; gap: 16px; }
  .doc-actions { justify-content: stretch; }
  .doc-action { width: 100%; text-align: center; }
  .info-columns { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-grid a { padding: 4px 0; }
}
@media (max-width: 430px) {
  .logo img { width: min(142px, 35vw); }
  .lang a { min-width: 25px; font-size: 8.8px; padding: 4px 3px; }
  .oly-menu-toggle { width: 39px; height: 39px; min-width: 39px; }
  .nav { width: calc(100vw - 14px); right: 7px; left: auto; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); max-width: 16ch; }
  .brand-statement { line-height: 1.5; }
}

/* OLYVENRA vRC2 final visual QA: keep the strong Group cards, refine logo hierarchy and document hub */
:root{
  --oly-final-gold:#d7b243;
  --oly-final-gold-soft:#e7cc79;
  --oly-final-panel:#071b29;
  --oly-final-panel-2:#0a2435;
}
.site-header{
  border-bottom-color:rgba(215,178,67,.22);
  background:rgba(3,19,30,.92);
}
.header-inner{
  grid-template-columns:300px minmax(0,1fr) auto;
  gap:26px;
}
.logo img{
  width:290px;
  max-width:100%;
  filter:drop-shadow(0 10px 28px rgba(0,0,0,.18));
}
.nav{gap:13px;font-weight:800;letter-spacing:.01em}
.hero .container{padding-top:62px;padding-bottom:88px}
.hero .kicker{color:var(--oly-final-gold-soft);letter-spacing:.16em}
.hero h1{max-width:900px;text-wrap:balance}
.hero .brand-statement{max-width:870px;color:#f3d996}
.group-section{background:radial-gradient(circle at 28% 18%,rgba(215,178,67,.14),transparent 34%),linear-gradient(180deg,#04131e 0%,#071b29 100%)}
.group-card{box-shadow:0 30px 80px rgba(0,0,0,.26);border-color:rgba(215,178,67,.42)}
.group-logo img{filter:drop-shadow(0 12px 28px rgba(0,0,0,.18))}

.documents-section{
  background:linear-gradient(180deg,#071923 0%,#0b2434 100%) !important;
  color:#eaf1f5;
}
.documents-section h2,
.documents-section h3,
.documents-section h4{color:#fff}
.documents-section .lead{color:rgba(234,241,245,.80)}
.documents-head{align-items:stretch}
.documents-notice{
  background:rgba(255,255,255,.045) !important;
  border:1px solid rgba(215,178,67,.30);
  border-left:4px solid var(--oly-final-gold);
  box-shadow:0 22px 64px rgba(0,0,0,.22);
}
.documents-notice strong{color:var(--oly-final-gold-soft)}
.documents-notice span{color:rgba(234,241,245,.76) !important}
.document-hub{
  border:1px solid rgba(215,178,67,.28);
  border-top:1px solid rgba(215,178,67,.48);
  background:rgba(255,255,255,.035);
  box-shadow:0 30px 90px rgba(0,0,0,.28);
}
.document-tabs{
  background:rgba(255,255,255,.035);
  border-bottom:1px solid rgba(215,178,67,.22);
}
button.document-tab{
  border-right:1px solid rgba(215,178,67,.18);
  background:rgba(255,255,255,.025);
  color:#eaf1f5;
  position:relative;
}
button.document-tab:hover{background:rgba(215,178,67,.08)}
button.document-tab.active{
  background:linear-gradient(180deg,rgba(215,178,67,.16),rgba(255,255,255,.035));
  color:#fff;
}
button.document-tab.active::before{
  content:"";
  position:absolute;
  left:0;right:0;top:0;height:4px;
  background:var(--oly-final-gold);
}
button.document-tab small{color:rgba(234,241,245,.56)}
button.document-tab.active small{color:var(--oly-final-gold-soft)}
.document-panels{background:rgba(255,255,255,.035)}
.documents-panel-head{border-bottom:1px solid rgba(215,178,67,.18)}
.documents-panel-head p{color:rgba(234,241,245,.72)}
.document-card,.document-row{
  border-color:rgba(215,178,67,.18);
  background:rgba(255,255,255,.025);
}
.document-card:hover{background:rgba(255,255,255,.055)}
.document-card:nth-child(odd){border-right:1px solid rgba(215,178,67,.18)}
.document-card h4,.document-row h4{color:#fff}
.document-card p,.document-row p,.documents-column>p{color:rgba(234,241,245,.72)}
.document-card.controlled-card,.documents-column.controlled{background:rgba(215,178,67,.045)}
.documents-column{
  border:1px solid rgba(215,178,67,.22);
  background:rgba(255,255,255,.035);
  box-shadow:0 18px 54px rgba(0,0,0,.20);
}
.documents-column>h3{color:#fff}
.documents-column>p{border-bottom-color:rgba(215,178,67,.18)}
.doc-pill{border-color:rgba(215,178,67,.36);background:rgba(215,178,67,.08);color:#e7cc79}
.doc-pill.public,.doc-pill.form,.doc-pill.controlled{border-color:rgba(215,178,67,.38);background:rgba(215,178,67,.09);color:#e7cc79}
.doc-action,.doc-action.request,.doc-action.secondary{
  border-color:rgba(215,178,67,.70);
  background:transparent;
  color:#f0d477;
}
.doc-action:hover,.doc-action.request:hover,.doc-action.secondary:hover{
  background:rgba(215,178,67,.14);
  color:#fff;
  border-color:#e7cc79;
}

@media(max-width:1280px){
  .header-inner{grid-template-columns:minmax(250px,1fr) auto auto}
  .logo img{width:255px}
}
@media(max-width:760px){
  .logo img{width:min(200px,46vw)}
  .hero .container{padding-top:54px;padding-bottom:58px}
  button.document-tab{border-right:0;border-bottom:1px solid rgba(215,178,67,.18)}
  .document-card:nth-child(odd){border-right:0}
}
@media(max-width:430px){
  .logo img{width:min(168px,40vw)}
}

/* RC3 final premium polish: stronger brand presence and document-centre visual consistency */
.header-inner { grid-template-columns: 270px minmax(0, 1fr) auto; }
.logo img { width: 270px; max-width: 100%; filter: drop-shadow(0 10px 22px rgba(0,0,0,.28)); }
.site-header.scrolled .logo img { width: 250px; }
.hero .container { padding-top: 56px; padding-bottom: 96px; }
.hero h1 { max-width: 1040px; font-size: clamp(44px, 5.2vw, 72px); letter-spacing: -.018em; }
.hero .brand-statement { max-width: 980px; font-size: clamp(20px, 2vw, 27px); }
.hero p { max-width: 920px; }
.document-hub { overflow: hidden; border: 1px solid rgba(215,178,67,.22); box-shadow: 0 24px 60px rgba(3,19,30,.12); }
.document-tabs { background: #071e2f; border-bottom: 1px solid rgba(215,178,67,.26); }
button.document-tab { background: #071e2f; color: #edf5f8; border-right: 1px solid rgba(255,255,255,.10); position: relative; }
button.document-tab::after { content: ""; position: absolute; left: 24px; right: 24px; bottom: 0; height: 3px; background: transparent; }
button.document-tab:hover { background: #0d2a3f; color: #fff; }
button.document-tab.active { background: #102f46; color: #fff; }
button.document-tab.active::after { background: var(--gold-500); }
button.document-tab small { color: #9eb3c0; }
button.document-tab.active small { color: var(--gold-400); }
.doc-pill.controlled, .doc-pill.form, .doc-pill.public { border-color: rgba(215,178,67,.36); }
.document-card.controlled-card { background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%); }
.group-section { border-top: 1px solid rgba(215,178,67,.22); border-bottom: 1px solid rgba(215,178,67,.18); }
.group-card { box-shadow: 0 30px 80px rgba(0,0,0,.25); }
@media (max-width: 1280px) {
  .header-inner { grid-template-columns: 230px auto auto; }
  .logo img, .site-header.scrolled .logo img { width: 230px; }
}
@media (max-width: 760px) {
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; }
  .logo img, .site-header.scrolled .logo img { width: 190px; }
  .hero .container { padding-top: 42px; padding-bottom: 72px; }
  .document-tabs { grid-template-columns: 1fr; }
  button.document-tab { min-height: 76px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
}

/* RC4 group section repair: restore full parent platform card and balanced sector cards */
.group-grid {
  grid-template-columns: minmax(300px, 1.12fr) repeat(2, minmax(220px, .9fr));
  align-items: stretch;
}
.group-parent-card {
  grid-row: span 2;
  min-height: 520px;
  justify-content: flex-start;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(215,178,67,.10));
  border-color: rgba(215,178,67,.58);
}
.group-parent-card .group-logo { height: 76px; margin-bottom: 30px; }
.group-parent-card .group-logo img { max-width: 330px; max-height: 68px; }
.group-parent-card h3 { font-size: 34px; letter-spacing: -.02em; }
.group-card .group-logo strong {
  display: inline-block;
  color: var(--white);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1;
}
.olydefence-card .group-logo strong { color: #f7e0a0; }
.olymedica-card { border-color: rgba(68, 220, 204, .55); }
.olyelectra-card { border-color: rgba(62, 169, 255, .48); }
.olyelectra-card .group-logo strong { color: #6fc7ff; }
.olyaerospace-card { border-color: rgba(230, 233, 238, .44); }
.olyaerospace-card .group-logo strong { color: #f3f7fb; }
.group-card p { display: block; visibility: visible; opacity: 1; overflow: visible; }
@media (max-width: 980px) {
  .group-grid { grid-template-columns: 1fr; }
  .group-parent-card { grid-row: auto; min-height: 0; }
  .group-parent-card .group-logo img { max-width: 280px; }
}

/* RC6 final QA polish: menu underline, document centre balance, group card safety */
.nav a {
  position: relative;
  isolation: isolate;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -13px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 16%, var(--gold-400) 50%, var(--gold-500) 84%, transparent 100%);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .22s ease, opacity .22s ease;
  opacity: .95;
  border-radius: 999px;
}
.nav a:hover::after,
.nav a.active::after,
.nav a[aria-current="page"]::after {
  transform: translateX(-50%) scaleX(1);
}
.site-header.scrolled .nav a::after { bottom: -10px; }

.document-tabs,
button.document-tab,
button.document-tab.active {
  background-color: #071e2f !important;
}
button.document-tab.active {
  background: linear-gradient(180deg, rgba(215,178,67,.12), rgba(7,30,47,.98)) !important;
}
button.document-tab.active::before { display:none !important; }
button.document-tab::after {
  left: 22px !important;
  right: 22px !important;
  bottom: 0 !important;
  height: 3px !important;
  border-radius: 999px 999px 0 0;
}
.document-card.controlled-card,
.document-card,
.documents-column,
.document-row {
  background: rgba(255,255,255,.028) !important;
  color: #eaf1f5 !important;
}
.document-card h4,
.document-row h4 { color:#fff !important; }
.document-card p,
.document-row p { color:rgba(234,241,245,.76) !important; }
.doc-actions { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.doc-action { white-space:nowrap; }

.group-parent-card p,
.group-card p {
  min-height: 0;
  overflow: visible !important;
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
}
.group-parent-card .group-link { margin-top:auto; }
.group-card { min-width: 0; }
.group-card h3,
.group-card p { overflow-wrap: anywhere; }

@media (max-width: 1180px) {
  .nav a::after { bottom: -9px; width: 34px; }
}
@media (max-width: 980px) {
  .nav a::after { display:none !important; }
  .group-parent-card { min-height: 0 !important; }
}

/* RC7: legacy status badges are intentionally hidden to avoid live/soon wording confusion. */
.division-status{display:none!important;}

/* RC8: restore the premium group-card composition from the preferred version while keeping RC7 wording cleanup. */
.group-grid.premium-group-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}
.premium-group-card {
  order: 1;
  min-height: 385px;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid rgba(215,178,67,.46);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.premium-group-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-400), transparent);
  opacity: .94;
}
.group-eyebrow {
  min-height: 30px;
  margin: 0 0 18px;
  color: var(--gold-400);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.premium-group-card .group-logo {
  min-height: 72px;
  height: auto;
  margin-bottom: 22px;
}
.premium-group-card .group-logo strong {
  display: inline-block;
  max-width: 100%;
  color: var(--white);
  font-size: clamp(25px, 2.45vw, 40px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .95;
}
.premium-group-card h3 {
  margin-top: 0;
  font-size: clamp(22px, 1.6vw, 29px);
  letter-spacing: -.025em;
}
.premium-group-card p {
  font-size: 15.5px;
  line-height: 1.64;
  color: rgba(232,241,246,.82);
  overflow-wrap: normal !important;
}
.group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}
.group-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(234,241,245,.88);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
}
.group-parent-card {
  order: 5 !important;
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
  min-height: 350px !important;
  padding: 42px !important;
  background:
    radial-gradient(circle at 20% 14%, rgba(215,178,67,.20), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(215,178,67,.10) 62%, rgba(255,255,255,.045));
  border-color: rgba(215,178,67,.66) !important;
}
.group-parent-card::before {
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400), transparent 82%);
}
.group-parent-card .group-logo {
  min-height: 84px;
  margin-bottom: 28px;
}
.group-parent-card .group-logo img {
  width: auto;
  max-width: 350px;
  max-height: 78px;
}
.group-parent-card h3 {
  font-size: clamp(32px, 3.2vw, 52px);
  margin-bottom: 12px;
}
.group-parent-card p {
  max-width: 880px;
  font-size: 17px;
}
.group-parent-card .group-tags {
  max-width: 760px;
}
.group-parent-card .group-link {
  width: min(360px, 100%);
}
.olydefence-card { order: 1; border-color: rgba(215,178,67,.54) !important; }
.olymedica-card { order: 2; border-color: rgba(68,220,204,.58) !important; }
.olyelectra-card { order: 3; border-color: rgba(62,169,255,.54) !important; }
.olyaerospace-card { order: 4; border-color: rgba(230,233,238,.48) !important; }
.olymedica-card::before { background: linear-gradient(90deg, transparent, #2dd4bf, rgba(45,212,191,.55), transparent); }
.olyelectra-card::before { background: linear-gradient(90deg, transparent, #38bdf8, rgba(56,189,248,.55), transparent); }
.olyaerospace-card::before { background: linear-gradient(90deg, transparent, rgba(230,233,238,.75), rgba(215,178,67,.42), transparent); }
.olymedica-card .group-eyebrow { color: #55e6d1; }
.olyelectra-card .group-eyebrow,
.olyelectra-card .group-logo strong { color: #70cfff; }
.olyaerospace-card .group-eyebrow { color: rgba(237,242,247,.9); }
.olymedica-card .group-logo {
  width: 100%;
  height: auto;
  min-height: 76px;
}
.olymedica-card .group-logo img {
  width: min(100%, 340px);
  max-width: 340px;
  max-height: 76px;
  object-fit: contain;
}
.division-status { display: none !important; }
@media (max-width: 1180px) {
  .group-grid.premium-group-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .group-parent-card { grid-column: 1 / -1 !important; }
}
@media (max-width: 760px) {
  .group-grid.premium-group-grid { grid-template-columns: 1fr !important; }
  .premium-group-card,
  .group-parent-card { min-height: 0 !important; padding: 28px !important; }
  .group-parent-card { order: 5 !important; }
  .premium-group-card .group-logo { min-height: 54px; margin-bottom: 18px; }
  .premium-group-card .group-logo strong { font-size: 31px; }
  .group-parent-card .group-logo img { max-width: 270px; max-height: 60px; }
  .group-tags span { font-size: 10.5px; }
}

/* RC9 final group card correction: restore premium card feel without duplicate brand titles or embedded logos */
.premium-group-card .group-logo {
  height: auto;
  min-height: 0;
  margin: 0 0 28px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
}
.premium-group-card .group-logo strong {
  display: block;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: .92;
  letter-spacing: -.045em;
  font-weight: 950;
  color: #f7fafc;
  text-transform: uppercase;
}
.group-parent-card .group-logo strong { color: #f7fafc; }
.olydefence-card .group-logo strong { color: #f7fafc; }
.olymedica-card .group-logo strong { color: #f7fafc; }
.olyelectra-card .group-logo strong { color: #6fc7ff; }
.olyaerospace-card .group-logo strong { color: #f4f8fb; }
.premium-group-card h3 { display: none !important; }
.olymedica-card .group-logo,
.olymedica-card .group-logo img { width: auto !important; height: auto !important; max-width: none !important; max-height: none !important; }
@media (max-width: 700px) {
  .premium-group-card .group-logo { margin-bottom: 22px; }
  .premium-group-card .group-logo strong { font-size: clamp(32px, 10vw, 44px); letter-spacing: -.04em; }
  .group-parent-card .group-logo strong { font-size: clamp(32px, 10vw, 44px); }
}


/* RC10 final polish: text integrity, mobile density and premium card rhythm. */
.why-points span::after { content: " "; }
.group-tags { gap: 7px; margin-bottom: 20px; }
.group-tags span { min-height: 28px; padding: 5px 9px; font-size: 10.5px; }
.group-link { min-height: 54px; padding-top: 12px; padding-bottom: 12px; }
.premium-group-card { min-height: 360px; }
.premium-group-card p { margin-bottom: 22px; }
.doc-actions { gap: 10px; }
.doc-action { min-height: 38px; padding: 9px 13px; }
.document-card { gap: 18px; }
@media (max-width: 760px) {
  .premium-group-card, .group-parent-card { padding: 24px !important; }
  .premium-group-card p { font-size: 15px; line-height: 1.58; margin-bottom: 20px; }
  .group-tags { gap: 7px; margin-bottom: 18px; }
  .group-tags span { min-height: 26px; padding: 5px 9px; font-size: 10px; }
  .group-link { min-height: 50px; padding: 11px 13px; }
  .group-link span { font-size: 12.5px; }
  .group-link small { font-size: 10.5px; }
  .doc-action { min-height: 38px; }
}
