@import url("theme.css");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.78), rgba(var(--bg-rgb), 0.94)),
    url("background pictures/Picture1.png") center top / cover fixed;
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 22% 18%, rgba(var(--accent-rgb), 0.13), transparent 30%),
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.25), rgba(var(--bg-rgb), 0.85));
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  min-height: 82px;
  padding: 8px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 62px;
  max-width: 168px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 24px);
  margin-left: auto;
}

.site-nav > a,
.nav-link,
.header-cta {
  border: 0;
  background: transparent;
  color: rgba(245, 248, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  cursor: pointer;
}

.site-nav > a::after,
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 160ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after {
  transform: scaleX(1);
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -22px;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--menu-bg);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.dropdown a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--text);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-link[aria-expanded="true"] + .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta,
.search-toggle,
.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  border-radius: 8px;
  color: var(--text);
  background: rgba(var(--accent-rgb), 0.08);
}

.header-cta:hover,
.header-cta:focus-visible,
.search-toggle:hover,
.search-toggle:focus-visible,
.language-trigger:hover,
.language-trigger:focus-visible {
  border-color: var(--cyan);
  background: rgba(var(--accent-rgb), 0.15);
}

.site-search {
  position: relative;
  flex: 0 0 auto;
}

.search-toggle {
  width: 42px;
  padding: 0;
  cursor: pointer;
}

.search-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: -132px;
  width: min(430px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--menu-bg);
  box-shadow: var(--shadow);
}

.search-input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 1rem;
}

.search-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.search-results {
  display: grid;
  gap: 6px;
  max-height: min(440px, calc(100vh - 150px));
  margin-top: 8px;
  overflow: auto;
}

.search-result {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
}

.search-result:hover,
.search-result:focus-visible,
.search-result.is-active {
  border-color: rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.09);
  color: var(--text);
}

.search-result-title {
  color: var(--text);
  font-weight: 850;
}

.search-result-meta {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result-excerpt {
  font-size: 0.9rem;
  line-height: 1.45;
}

.search-result mark {
  padding: 0 2px;
  border-radius: 3px;
  background: rgba(var(--accent-rgb), 0.22);
  color: var(--text);
}

.search-message {
  padding: 14px 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-trigger {
  gap: 8px;
  min-width: 112px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.language-trigger .chevron {
  width: 6px;
  height: 6px;
  margin-left: 2px;
}

.language-flag,
.language-option span:first-child {
  display: inline-block;
  flex: 0 0 auto;
  width: 1.45em;
  height: 1.02em;
  border-radius: 2px;
  background-color: #202320;
  background-image: url("assets/flags/en.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
  color: transparent;
  font-size: 1rem;
  line-height: 1;
  overflow: hidden;
  text-indent: 120%;
  white-space: nowrap;
}

.language-flag[data-flag-code="en"],
.language-option[data-lang="en"] span:first-child {
  background-image: url("assets/flags/en.svg");
}

.language-flag[data-flag-code="de"],
.language-option[data-lang="de"] span:first-child {
  background-image: url("assets/flags/de.svg");
}

.language-flag[data-flag-code="fr"],
.language-option[data-lang="fr"] span:first-child {
  background-image: url("assets/flags/fr.svg");
}

.language-flag[data-flag-code="zh"],
.language-option[data-lang="zh"] span:first-child {
  background-image: url("assets/flags/zh.svg");
}

.language-flag[data-flag-code="hi"],
.language-option[data-lang="hi"] span:first-child {
  background-image: url("assets/flags/hi.svg");
}

.language-flag[data-flag-code="ko"],
.language-option[data-lang="ko"] span:first-child {
  background-image: url("assets/flags/ko.svg");
}

.language-flag[data-flag-code="ar"],
.language-option[data-lang="ar"] span:first-child {
  background-image: url("assets/flags/ar.svg");
}

.language-flag[data-flag-code="ur"],
.language-option[data-lang="ur"] span:first-child {
  background-image: url("assets/flags/ur.svg");
}

.language-flag[data-flag-code="ru"],
.language-option[data-lang="ru"] span:first-child {
  background-image: url("assets/flags/ru.svg");
}

.language-flag[data-flag-code="pt"],
.language-option[data-lang="pt"] span:first-child {
  background-image: url("assets/flags/pt.svg");
}

.language-flag[data-flag-code="es"],
.language-option[data-lang="es"] span:first-child {
  background-image: url("assets/flags/es.svg");
}

.language-flag[data-flag-code="bn"],
.language-option[data-lang="bn"] span:first-child {
  background-image: url("assets/flags/bn.svg");
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  max-height: min(520px, calc(100vh - 104px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--menu-bg);
  box-shadow: var(--shadow);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu,
.language-trigger[aria-expanded="true"] + .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: start;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

html[dir="rtl"] .site-header {
  direction: ltr;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .dropdown,
html[dir="rtl"] .search-panel,
html[dir="rtl"] .language-menu {
  direction: rtl;
}

html[dir="rtl"] .hero-inner,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .legal-panel,
html[dir="rtl"] .footer-column,
html[dir="rtl"] .footer-brand {
  text-align: start;
}

.section-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 74px);
}

.hero {
  display: flex;
  align-items: end;
  min-height: 92vh;
  padding-top: 120px;
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.9) 0%, rgba(var(--bg-rgb), 0.66) 42%, rgba(var(--bg-rgb), 0.34) 100%),
    url("background pictures/Picture3.png") center / cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 140px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.hero h1 {
  font-size: clamp(2.15rem, 5.35vw, 4.9rem);
  line-height: 0.96;
}

.hero-title span {
  display: block;
}

html[lang="de"] body[data-page="home"] .hero-inner {
  width: min(1120px, 100%);
}

html[lang="de"] body[data-page="home"] .hero h1 {
  max-width: 1120px;
  font-size: clamp(1.78rem, 4.45vw, 4.05rem);
  line-height: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  overflow-wrap: anywhere;
}

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 6.8vw, 6.15rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-copy {
  width: min(650px, 100%);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
}

.hero-actions,
.application-tags,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button.primary {
  border: 0;
  background: #d98f36;
  color: #050504;
}

.button.secondary {
  border: 0;
  background: #d98f36;
  color: #050504;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  filter: brightness(1.15);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  max-width: 1250px;
  margin: 0 auto;
}

.section-copy p {
  max-width: 650px;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.metric-list div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-list dt {
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 850;
}

.metric-list dd {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

html[lang="de"] .metric-list dd {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-link::after {
  content: "->";
}

.product-video {
  position: relative;
  display: grid;
  min-height: 460px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.product-video::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(var(--bg-rgb), 0.58) 100%),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.12), transparent 40%);
}

.product-video video,
.product-video iframe {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  min-height: 460px;
  border: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05) brightness(0.88);
}

.product-video.is-youtube::after {
  display: none;
}

.video-play-button {
  position: absolute;
  top: calc(50% - 28px);
  left: 50%;
  z-index: 3;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(var(--bg-rgb), 0.72);
  color: var(--text);
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  border-color: var(--cyan);
  background: rgba(var(--accent-rgb), 0.18);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-play-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.product-video.is-playing .video-play-button {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
}

.video-caption {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(var(--bg-rgb), 0.72);
  color: var(--text);
}

.video-caption span {
  color: var(--muted);
}

.applications-section {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.92), rgba(var(--bg-rgb), 0.97)),
    url("background pictures/Picture1.png") center / cover;
}

.application-card {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  max-width: 1250px;
  margin: 0 auto;
}

.application-image {
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(2, 6, 12, 0.1), rgba(2, 6, 12, 0.58)),
    url("background pictures/Picture1.png") center / cover;
  box-shadow: var(--shadow);
}

.application-copy {
  align-self: center;
}

.application-tags {
  margin: 30px 0;
}

.application-tags span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
}

.realignment-section {
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.95), rgba(var(--bg-rgb), 0.82)),
    url("background pictures/ERW_HFI_006.avif") center / cover;
}

.realignment-panel {
  max-width: 1250px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.realignment-intro {
  max-width: 930px;
}

.subtitle {
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.leadership {
  margin: 42px 0;
}

.lead-label {
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 800;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.leader-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.leader-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  background: #111923;
}

.leader-card h3 {
  margin: 16px 0 6px;
}

.leader-card p {
  margin-bottom: 8px;
  color: #dce8f7;
  font-size: 0.92rem;
  line-height: 1.45;
}

.leader-card span {
  color: var(--fresh);
  font-size: 0.86rem;
  line-height: 1.45;
}

.continuity {
  max-width: 820px;
  color: #dce8f7;
  font-size: 1.08rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
}

.contact-copy h2 {
  max-width: 660px;
}

html[dir="rtl"] .contact-copy {
  text-align: start;
}

html[dir="rtl"] .contact-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.15vw, 3.6rem);
  line-height: 1.18;
  text-wrap: balance;
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--warm-rgb), 0.08)),
    var(--panel);
  box-shadow: var(--shadow);
}

.featured-email-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.featured-email-list a {
  display: block;
  color: var(--text);
  font-size: clamp(1.15rem, 2.1vw, 2.35rem);
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
}

.contact-details a:hover,
.footer-column a:hover {
  color: var(--cyan);
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.contact-hero {
  display: flex;
  align-items: end;
  min-height: 62vh;
  padding-top: 128px;
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.94) 0%, rgba(var(--bg-rgb), 0.72) 55%, rgba(var(--bg-rgb), 0.42) 100%),
    url("background pictures/ERW_HFI_006.avif") center / cover;
}

.contact-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
}

.contact-hero-inner h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 6vw, 5.7rem);
}

.contact-hero-inner p {
  max-width: 700px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.contact-faq-section,
.contact-form-section {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.94), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/Picture1.png") center / cover;
}

.contact-section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 22px;
  color: var(--text);
  cursor: pointer;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 850;
  list-style: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  content: "";
  transform: translateY(-4px) rotate(45deg);
  transition: transform 160ms ease, border-color 160ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.faq-item summary:hover::after,
.faq-item summary:focus-visible::after {
  border-color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-direct-section {
  display: grid;
  max-width: 1360px;
  margin: 0 auto;
}

.contact-action-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}

.ticket-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 220px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-2-rgb), 0.1)),
    var(--panel);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
  animation: ticketPulse 1.65s ease-in-out infinite;
}

.ticket-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: -1;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.14);
  content: "";
  filter: blur(28px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.ticket-card::before {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  content: "";
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transform: rotate(-45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.ticket-card:hover,
.ticket-card:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.72);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-2-rgb), 0.18)),
    var(--panel);
  box-shadow: 0 26px 80px rgba(var(--accent-rgb), 0.2), var(--shadow);
  transform: translateY(-4px);
  animation-play-state: paused;
}

.ticket-card:hover::after,
.ticket-card:focus-visible::after {
  opacity: 1;
  transform: scale(1.25);
}

.ticket-card:hover::before,
.ticket-card:focus-visible::before {
  border-color: var(--text);
  transform: translateX(4px) rotate(-45deg);
}

.ticket-card strong {
  color: var(--text);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.ticket-card-copy {
  color: var(--muted);
  line-height: 1.65;
}

.ticket-card-note {
  display: block;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.5;
}

.contact-service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  max-width: 1250px;
  margin: 22px auto 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--warm-rgb), 0.1)),
    rgba(var(--bg-rgb), 0.72);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.contact-service-copy h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.8vw, 2.45rem);
  line-height: 1.12;
}

.contact-service-copy p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.68;
}

.contact-service-copy .button {
  margin-top: 20px;
}

.contact-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-service-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

@keyframes ticketPulse {
  0%,
  100% {
    border-color: var(--line);
    box-shadow: var(--shadow);
  }

  50% {
    border-color: rgba(var(--accent-rgb), 0.9);
    box-shadow:
      0 0 0 13px rgba(var(--accent-rgb), 0.16),
      0 34px 98px rgba(var(--accent-rgb), 0.26),
      var(--shadow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticket-card {
    animation: none;
  }
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.contact-form-copy {
  position: sticky;
  top: 110px;
}

.contact-mail-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-mail-stack a {
  color: var(--cyan);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  min-height: 170px;
  padding-top: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.form-full,
.privacy-check,
.form-status {
  grid-column: 1 / -1;
}

.privacy-check {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--orange);
}

.news-section {
  background: var(--panel-solid);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1250px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1250px;
  margin: 0 auto;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-2-rgb), 0.06)),
    var(--bg-soft);
  filter: saturate(0.9) brightness(0.86);
}

.news-section .news-card img,
.news-section .news-card video {
  background: var(--panel-solid);
}

.news-card div {
  padding: 20px;
}

.news-date {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h3 {
  min-height: 78px;
  margin-bottom: 12px;
}

.news-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.social-row {
  justify-content: center;
  max-width: 1250px;
  margin: 34px auto 0;
}

.social-row a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #d98f36;
  color: #050504;
}

.social-row a:hover,
.social-row a:focus-visible {
  color: #050504;
  filter: brightness(1.08);
}

.social-row svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.news-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #000;
  filter: saturate(0.88) brightness(0.82);
}

.news-hero {
  display: flex;
  align-items: end;
  min-height: 52vh;
  padding-top: 128px;
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.94) 0%, rgba(var(--bg-rgb), 0.72) 55%, rgba(var(--bg-rgb), 0.42) 100%),
    url("background pictures/Picture3.png") center / cover;
}

.news-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.news-hero-inner {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
}

.news-hero-inner h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 5.6vw, 5.2rem);
}

.news-hero-inner p {
  max-width: 700px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.news-page {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.94), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/Picture1.png") center / cover;
}

.news-page-list {
  display: grid;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.news-post {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.news-post.no-media {
  grid-template-columns: 1fr;
}

.news-post-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel-solid);
}

.news-post-media img,
.news-post-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--panel-solid);
  filter: saturate(0.92) brightness(0.88);
}

.news-post-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.12;
}

.news-post-content p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.news-post-body {
  margin-top: 14px;
  color: var(--muted);
  white-space: pre-line;
}

.news-post-link {
  margin-top: 18px;
}

.news-state {
  max-width: 720px;
  margin: 8px auto;
  padding: 30px 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.news-state.is-error {
  border-color: rgba(var(--warm-rgb), 0.4);
  color: var(--orange);
}

.news-page .social-row {
  margin-top: 40px;
}

/* Downloads / resources page ------------------------------------------- */
.resources-hero {
  display: flex;
  align-items: end;
  min-height: 50vh;
  padding-top: 128px;
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.94) 0%, rgba(var(--bg-rgb), 0.72) 55%, rgba(var(--bg-rgb), 0.42) 100%),
    url("background pictures/Picture2.png") center / cover;
}

.resources-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.resources-hero-inner {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
}

.resources-hero-inner h1 {
  max-width: 820px;
  font-size: clamp(2.55rem, 5.6vw, 5.2rem);
}

.resources-hero-inner p {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.resources-page {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.94), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/Picture1.png") center / cover;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr));
  gap: 16px;
  max-width: 1250px;
  margin: 0 auto;
}

.instant-download-heading {
  max-width: 980px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}

.instant-download-heading h2 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.instant-download-heading p:last-child {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.6;
}

.download-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1250px;
  margin: 0 auto 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.download-filter-label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.download-filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.download-filter-button:hover,
.download-filter-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.58);
  color: var(--text);
}

.download-filter-button.is-active {
  border-color: rgba(var(--accent-rgb), 0.74);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.28), rgba(var(--accent-2-rgb), 0.22));
  color: var(--text);
}

.downloads-grid .news-state {
  grid-column: 1 / -1;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.download-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.download-badge {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.download-card[data-type="pdf"] .download-badge {
  border-color: rgba(var(--warm-rgb), 0.48);
  background: rgba(var(--warm-rgb), 0.16);
  color: var(--warm);
}

.download-card[data-type="zip"] .download-badge {
  border-color: rgba(255, 176, 80, 0.45);
  background: rgba(255, 176, 80, 0.16);
  color: #ffe4bf;
}

.download-card[data-type="excel"] .download-badge,
.download-card[data-type="csv"] .download-badge {
  border-color: rgba(121, 242, 176, 0.45);
  background: rgba(121, 242, 176, 0.14);
  color: #cdfbe2;
}

.download-card[data-type="word"] .download-badge {
  border-color: rgba(110, 160, 255, 0.45);
  background: rgba(110, 160, 255, 0.16);
  color: #d7e3ff;
}

.download-card[data-type="video"] .download-badge {
  border-color: var(--line-strong);
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--text);
}

.download-text {
  min-width: 0;
}

.download-text h3 {
  margin: 2px 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.download-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.download-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.download-tag.download-lang {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.08);
}

.download-btn {
  width: 100%;
}

.premium-download-section {
  padding-top: clamp(54px, 5vw, 78px);
  padding-bottom: clamp(64px, 6vw, 92px);
  background: #ffffff;
  color: #303030;
}

.premium-download-heading {
  max-width: 980px;
  margin: 0 auto clamp(24px, 3vw, 38px);
}

.premium-download-heading .eyebrow {
  color: #d98f36;
}

.premium-download-heading h2 {
  color: #303030;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.premium-download-heading p:last-child {
  max-width: 940px;
  color: #8e8e8e;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}

.premium-download-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.premium-download-cards {
  display: contents;
}

.premium-download-card {
  display: grid;
  min-height: 198px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 8px;
  background: #f1f0ec;
}

.premium-download-card-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.premium-file-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 2px solid rgba(var(--warm-rgb), 0.42);
  border-radius: 8px;
  background: rgba(var(--warm-rgb), 0.16);
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.premium-download-card h3 {
  margin: 8px 0 8px;
  color: #303030;
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.22;
}

.premium-card-meta,
.premium-card-desc {
  margin: 0;
  color: #8a8a8a;
  line-height: 1.55;
}

.premium-card-meta {
  font-size: 0.94rem;
}

.premium-card-desc {
  align-self: end;
  margin-top: 28px;
  font-size: 0.98rem;
}

.premium-download-form {
  display: grid;
  align-self: start;
  gap: 20px;
  padding: 0 clamp(0px, 1vw, 12px);
}

.premium-download-form fieldset {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.premium-download-form legend {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.premium-option-list {
  display: grid;
  gap: 16px;
}

.premium-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #111111;
  font-size: 0.98rem;
  line-height: 1.35;
}

.premium-option input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: #d98f36;
}

.premium-option strong,
.premium-option small {
  display: block;
}

.premium-option small {
  margin-top: 4px;
  color: #8e8e8e;
  font-size: 0.84rem;
}

.premium-request-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 24px;
  align-items: center;
}

.premium-request-row input {
  width: 100%;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  background: #ffffff;
  color: #303030;
  font: inherit;
}

.premium-request-row input:focus {
  border-color: #d98f36;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(217, 143, 54, 0.16);
}

.button.primary.premium-request-button {
  min-width: 242px;
  min-height: 42px;
  border: 0;
  background: #d98f36;
  color: #050504;
  white-space: nowrap;
}

.premium-form-status,
.premium-state {
  margin: 0;
  color: #777777;
  font-weight: 650;
  line-height: 1.5;
}

.premium-form-status.is-error,
.premium-state.is-error {
  color: #b45a11;
}

.premium-form-status.is-success {
  color: #74f98e;
}

.who-leadership-section {
  padding-top: clamp(128px, 13vw, 178px);
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.9), rgba(var(--bg-rgb), 0.98)),
    url("assets/who-we-are/transition-background.jpg") center / cover;
}

.who-page-heading {
  max-width: 1040px;
  margin: 0 auto 42px;
}

.who-page-heading h1 {
  max-width: 920px;
  font-size: clamp(2.25rem, 4.8vw, 4.55rem);
}

.who-page-heading p:last-child {
  max-width: 780px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.65vw, 1.26rem);
}

.who-leader-grid {
  display: grid;
  gap: 18px;
  max-width: 1250px;
  margin: 0 auto;
}

.who-leader-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 13, 23, 0.86);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.who-leader-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  background: var(--bg-soft);
}

.who-leader-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.9vw, 2.85rem);
}

.who-role {
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.who-leader-card p:not(.who-role) {
  margin-bottom: 12px;
  line-height: 1.68;
}

.who-transition-section {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.95), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/ERW_HFI_006.avif") center / cover;
}

.who-transition-grid {
  display: grid;
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto 38px;
}

.who-transition-copy p:not(.eyebrow):not(.subtitle) {
  max-width: 720px;
}

.continuity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1250px;
  margin: 0 auto;
}

.continuity-grid article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.continuity-grid h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
}

.continuity-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.continuity-grid li::marker {
  color: var(--cyan);
}

.impact-section {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.92), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/Picture2.png") center / cover;
}

.impact-inner {
  max-width: 1250px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.impact-grid article {
  min-height: 168px;
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.11), rgba(var(--accent-2-rgb), 0.08)),
    var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.impact-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.impact-grid span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.who-careers-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.88), rgba(var(--bg-rgb), 0.98)),
    url("assets/who-we-are/transition-background.jpg") center / cover;
}

.who-careers-cta > div {
  max-width: 840px;
}

.who-careers-cta h2 {
  max-width: 840px;
}

.who-careers-cta .button {
  margin-top: 10px;
}

.legal-section {
  padding-top: clamp(128px, 13vw, 178px);
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.94), rgba(var(--bg-rgb), 0.985)),
    url("background pictures/Picture3.png") center / cover;
}

.legal-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-panel h1 {
  font-size: clamp(2.65rem, 5.6vw, 5.8rem);
}

body[data-page="terms"] .legal-panel h1 {
  font-size: clamp(1.85rem, 3.4vw, 3.35rem);
  line-height: 1.06;
}

body[data-page="privacy"] .legal-panel h1 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.06;
}

.legal-panel h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1.12;
}

.legal-panel h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-panel p,
.legal-panel li,
.legal-panel address {
  color: var(--muted);
  line-height: 1.72;
}

.legal-panel address {
  font-style: normal;
}

.legal-panel a {
  color: var(--cyan);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-panel li::marker {
  color: var(--cyan);
}

.cookie-policy-table {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  overflow: auto;
  background: #202221;
  box-shadow: var(--frame-shadow-soft);
}

.cookie-policy-table [role="row"] {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr 1.4fr 1fr 1fr;
  min-width: 940px;
  background: #2a2a2a;
}

.cookie-policy-table [role="columnheader"],
.cookie-policy-table [role="cell"] {
  padding: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-policy-table [role="columnheader"] {
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-note {
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-meta {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.08);
}

.product-hero,
.applications-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: 88vh;
  padding-top: 130px;
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.96), rgba(var(--bg-rgb), 0.76) 56%, rgba(var(--bg-rgb), 0.38)),
    url("background pictures/Picture3.png") center / cover;
}

.product-hero::after,
.applications-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.product-hero-copy,
.applications-hero-copy,
.product-hero-image,
.applications-hero-image {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.product-hero-copy p,
.applications-hero-copy p {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

body[data-page="product"] .product-hero-copy h1 {
  font-size: clamp(2.15rem, 5.7vw, 5.3rem);
  line-height: 0.96;
}

.product-hero-image,
.applications-hero-image,
.product-page-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-hero-image img,
.applications-hero-image img,
.product-page-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.84);
}

.applications-hero-image img {
  min-height: 320px;
}

.product-intro,
.product-benefits,
.product-facts,
.application-specs,
.application-benefit-section {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.92), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/Picture1.png") center / cover;
}

.product-intro-grid,
.product-defects-grid,
.process-fit-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
}

.product-defects-grid,
.process-fit-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
}

.product-rich-copy p {
  max-width: 720px;
}

.product-rich-copy p:not(:last-child) {
  margin-bottom: 18px;
}

.product-page-image.tall img {
  min-height: 620px;
}

.product-detail-section,
.product-process,
.product-reasons,
.fit-section,
.process-fit-section,
.not-fit-section {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.96), rgba(var(--bg-rgb), 0.99)),
    url("background pictures/Picture2.png") center / cover;
}

.product-section-heading {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.product-section-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.product-section-heading p:last-child {
  margin-right: auto;
  margin-left: auto;
  max-width: 760px;
}

.product-card-grid,
.fit-card-grid,
.benefit-scenario-grid {
  display: grid;
  gap: 16px;
  max-width: 1250px;
  margin: 0 auto;
}

.product-card-grid.two,
.benefit-scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card-grid.three,
.fit-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card-grid article,
.fit-card-grid article,
.benefit-scenario-grid article,
.process-rail article,
.application-matrix article,
.fact-grid article,
.spec-strip article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-2-rgb), 0.06)),
    var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.product-card-grid article,
.fit-card-grid article,
.benefit-scenario-grid article {
  padding: clamp(20px, 2.6vw, 30px);
}

.product-card-grid h3,
.fit-card-grid h3,
.benefit-scenario-grid h3,
.process-rail h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.product-card-grid p,
.fit-card-grid p,
.benefit-scenario-grid p,
.process-rail p,
.application-matrix p {
  margin-bottom: 0;
}

.product-card-number {
  display: inline-block;
  margin-bottom: 28px;
  padding: 0;
  color: var(--cyan);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  box-shadow: none;
}

.product-check-list {
  display: grid;
  gap: 9px;
  margin: 24px 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.62;
}

.product-check-list.compact {
  margin: 0;
}

.product-check-list li::marker {
  color: var(--cyan);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1250px;
  margin: 0 auto;
}

.process-rail article {
  padding: 22px;
}

.process-rail span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  border-radius: 50%;
  color: var(--text);
  font-weight: 850;
}

.benefit-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1020px;
  margin: 0 auto;
}

.benefit-list-grid ul {
  padding: clamp(22px, 3vw, 34px) clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-video-section {
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.96), rgba(var(--bg-rgb), 0.82)),
    url("assets/product/tps-hero.jpg") center / cover;
}

.fact-grid,
.spec-strip {
  display: grid;
  gap: 14px;
  max-width: 1250px;
  margin: 0 auto;
}

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

.spec-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fact-grid article,
.spec-strip article {
  min-height: 150px;
  padding: clamp(18px, 2.4vw, 26px);
}

.fact-grid strong,
.spec-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.fact-grid span,
.spec-strip span {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.38;
}

.application-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.88), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/ERW_HFI_006.avif") center / cover;
}

.application-cta > div {
  max-width: 880px;
}

.application-cta h2 {
  margin-right: auto;
  margin-left: auto;
}

.application-cta .hero-actions {
  justify-content: center;
}

.applications-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.82fr);
}

.applications-hero-image {
  align-self: stretch;
}

.applications-hero-image img {
  min-height: 100%;
}

.application-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1250px;
  margin: 42px auto 0;
}

.application-matrix article {
  padding: 20px;
}

.application-matrix span,
.application-matrix h3 {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-fit-panel {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.not-fit-panel p {
  max-width: 760px;
}

.partners-section {
  padding-top: clamp(128px, 13vw, 178px);
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.94), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/Picture3.png") center / cover;
}

.partners-section-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.partners-section-heading h1 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.65rem, 5.9vw, 5.5rem);
}

.partners-section-heading p:last-child {
  margin-right: auto;
  margin-left: auto;
  max-width: 760px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1250px;
  margin: 0 auto;
}

.partner-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
}

.partner-flag {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #2a2a2a;
}

.flag-image {
  display: block;
  width: clamp(100px, 10vw, 142px);
  height: auto;
  background: #ffffff;
  object-fit: contain;
  box-shadow: none;
}

.partner-flag-stack .flag-image {
  width: clamp(96px, 9vw, 128px);
}

.partner-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(22px, 3.4vw, 34px);
}

.partner-region {
  margin: 0;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.partner-role {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.partner-copy address {
  margin-top: 4px;
}

.partner-contact-list {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.partner-contact-list a {
  color: var(--cyan);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.partner-contact-list a:hover,
.partner-contact-list a:focus-visible {
  color: var(--text);
}

.careers-hero {
  display: flex;
  align-items: end;
  min-height: 76vh;
  padding-top: 128px;
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.94) 0%, rgba(var(--bg-rgb), 0.72) 55%, rgba(var(--bg-rgb), 0.42) 100%),
    url("background pictures/Picture2.png") center / cover;
}

.careers-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.careers-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(1250px, 100%);
  margin: 0 auto;
}

.careers-hero h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 5.9vw, 5.6rem);
}

.careers-pitch {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.careers-apply-top {
  margin-top: 14px;
  white-space: nowrap;
}

.careers-jobs {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.94), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/Picture1.png") center / cover;
}

.careers-section-heading {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.careers-section-heading h2 {
  margin-bottom: 14px;
}

.jobs-accordion {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.job-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.job-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.job-panel summary::-webkit-details-marker {
  display: none;
}

.job-panel summary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.job-panel summary small {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-toggle-icon {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.job-toggle-icon::before,
.job-toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--text);
  transform: translate(-50%, -50%);
}

.job-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.job-panel[open] .job-toggle-icon::after {
  opacity: 0;
}

.job-content {
  display: grid;
  gap: 24px;
  padding: 0 22px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.job-content > p {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 1.02rem;
}

.job-detail-section h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

.job-detail-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.job-detail-section li::marker {
  color: var(--cyan);
}

.job-apply-link {
  justify-self: start;
}

.careers-noscript {
  max-width: 720px;
  margin: 22px auto 0;
  text-align: center;
}

.careers-map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
}

.map-copy,
.map-frame {
  min-width: 0;
}

.map-copy h2 {
  max-width: 560px;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 440px;
  border: 0;
  filter: grayscale(0.25) contrast(1.03) brightness(0.9);
}

.careers-bottom-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.9), rgba(var(--bg-rgb), 0.98)),
    url("background pictures/Picture3.png") center / cover;
}

.careers-bottom-cta h2 {
  max-width: 760px;
}

.recruiting-hero {
  display: flex;
  align-items: end;
  min-height: 58vh;
  padding-top: 128px;
  background:
    linear-gradient(90deg, rgba(var(--bg-rgb), 0.95) 0%, rgba(var(--bg-rgb), 0.74) 58%, rgba(var(--bg-rgb), 0.46) 100%),
    url("background pictures/Picture2.png") center / cover;
}

.recruiting-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.recruiting-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.recruiting-hero h1 {
  max-width: 920px;
  font-size: clamp(2.65rem, 5.9vw, 5.55rem);
}

.recruiting-hero p:last-child {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.recruiting-form-section {
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.94), rgba(var(--bg-rgb), 0.985)),
    url("background pictures/Picture1.png") center / cover;
}

.recruiting-layout {
  max-width: 960px;
  margin: 0 auto;
}

.recruiting-form {
  max-width: none;
}

.recruiting-form fieldset {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.recruiting-form legend {
  padding: 0 8px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 850;
}

.recruiting-form label {
  gap: 6px;
  align-content: start;
  line-height: 1.28;
}

.recruiting-form input:not([type="file"]),
.recruiting-form select {
  min-height: 46px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.recruiting-form input[type="file"] {
  padding: 11px;
  cursor: pointer;
}

.application-privacy-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 6px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.recruiting-submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  padding-top: 2px;
}

.recruiting-submit-button {
  width: auto;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.78rem;
}

.application-privacy-panel h2 {
  margin-bottom: 4px;
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.application-privacy-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.application-privacy-panel a {
  color: var(--cyan);
  font-weight: 850;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 8px;
  color: var(--text);
  font-weight: 750;
  line-height: 1.55;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--cyan);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(4, minmax(150px, 1fr));
  gap: 30px;
  padding: 58px clamp(18px, 5vw, 74px) 28px;
  border-top: 1px solid var(--line);
  background: #03060b;
}

.footer-brand img {
  width: 180px;
  height: auto;
  max-height: 78px;
  margin-bottom: 18px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 320px;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-legal a[data-i18n="footer.privacy"] {
  font-size: 0.88rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 0.86rem;
  text-align: center;
}

.footer-bottom span {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .section-grid,
  .application-card,
  .contact-section,
  .contact-direct-section,
  .contact-form-section,
  .careers-map-section,
  .who-transition-grid,
  .product-hero,
  .applications-hero,
  .product-intro-grid,
  .product-defects-grid,
  .process-fit-grid,
  .benefit-list-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-copy {
    position: static;
  }

  .contact-service-card {
    grid-template-columns: 1fr;
  }

  .premium-download-layout {
    grid-template-columns: 1fr;
  }

  .download-filter {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-filter-options {
    justify-content: flex-start;
    width: 100%;
  }

  .contact-action-stack {
    grid-template-columns: 1fr;
  }

  .careers-hero-inner {
    grid-template-columns: 1fr;
  }

  .careers-apply-top {
    justify-self: start;
  }

  .application-image,
  .product-video,
  .product-video video,
  .product-video iframe {
    min-height: 380px;
  }

  .leader-grid,
  .news-grid,
  .partner-grid,
  .impact-grid,
  .product-card-grid.three,
  .process-rail,
  .fact-grid,
  .spec-strip,
  .application-matrix,
  .fit-card-grid,
  .benefit-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .continuity-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
    padding: 9px 18px;
  }

  .brand img {
    width: auto;
    height: 48px;
    max-width: 120px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--menu-bg);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-link {
    justify-content: space-between;
    min-height: 48px;
    width: 100%;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin-bottom: 6px;
    padding: 4px;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .search-panel {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown,
  .nav-link[aria-expanded="true"] + .dropdown {
    display: grid;
  }

  .hero {
    min-height: 84vh;
    padding-top: 110px;
  }

  .careers-hero {
    min-height: 72vh;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 4.45rem);
  }

  body[data-page="product"] .product-hero-copy h1 {
    font-size: clamp(2.05rem, 8.7vw, 3.95rem);
  }

  .metric-list,
  .leader-grid,
  .news-grid,
  .partner-grid,
  .impact-grid,
  .product-card-grid.two,
  .product-card-grid.three,
  .process-rail,
  .fact-grid,
  .spec-strip,
  .application-matrix,
  .fit-card-grid,
  .benefit-scenario-grid,
  .news-post,
  .contact-form,
  .form-row,
  .who-leader-card {
    grid-template-columns: 1fr;
  }

  .who-leader-card img {
    height: auto;
  }

  .news-card h3 {
    min-height: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 8px;
  }

  .section-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .premium-request-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .premium-request-button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  [data-language-label],
  .language-trigger .chevron {
    display: none;
  }

  .language-trigger {
    min-width: 50px;
    padding: 0;
  }

  .application-tags {
    display: grid;
  }

  .product-hero,
  .applications-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .product-hero-image img,
  .applications-hero-image img,
  .product-page-image img,
  .product-page-image.tall img {
    min-height: 280px;
  }

  .product-card-grid article,
  .fit-card-grid article,
  .benefit-scenario-grid article,
  .process-rail article,
  .not-fit-panel {
    padding: 20px;
  }

  .featured-email-list a {
    font-size: clamp(1.05rem, 7vw, 2.2rem);
    overflow-wrap: anywhere;
  }

  .job-panel summary {
    align-items: flex-start;
    padding: 18px;
  }

  .job-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .application-privacy-panel h2 {
    font-size: 1.28rem;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-flag {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .map-frame iframe {
    min-height: 330px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: auto;
    height: 42px;
    max-width: 106px;
  }
}

/* Final TMC surface pass: single palette, opaque elements, square structural frames. */
.site-header,
.search-panel,
.language-menu,
.metric-list div,
.realignment-panel,
.leader-card,
.contact-panel,
.faq-item,
.ticket-card,
.contact-service-card,
.contact-form,
.news-card,
.news-post,
.news-state,
.download-card,
.premium-download-card,
.premium-state,
.who-leader-card,
.continuity-grid article,
.impact-grid article,
.legal-panel,
.legal-note,
.product-hero-image,
.applications-hero-image,
.product-page-image,
.product-card-grid article,
.fit-card-grid article,
.benefit-scenario-grid article,
.process-rail article,
.application-matrix article,
.fact-grid article,
.spec-strip article,
.benefit-list-grid ul,
.not-fit-panel,
.partner-card,
.job-panel,
.map-frame,
.recruiting-form fieldset {
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--panel-solid) !important;
  box-shadow: var(--frame-shadow) !important;
  backdrop-filter: none !important;
}

.application-privacy-panel {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header {
  background: var(--header-bg) !important;
}

.premium-download-form,
.premium-download-form fieldset {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.search-panel {
  background: var(--menu-bg) !important;
}

.site-nav,
.dropdown a {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.dropdown,
.language-menu {
  border: 0 !important;
  background: var(--dropdown-bg) !important;
  box-shadow: var(--frame-shadow-soft) !important;
  backdrop-filter: none !important;
}

.language-option {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.search-result,
.application-tags span,
.contact-service-list span,
.download-tag,
.download-badge,
.premium-file-icon,
.job-toggle-icon {
  border: 0 !important;
  border-radius: 0 !important;
  background: #2a2a2a !important;
  box-shadow: var(--frame-shadow-soft) !important;
}

.partner-flag {
  border: 0 !important;
  border-radius: 0 !important;
  background: #2a2a2a !important;
  box-shadow: none !important;
}

.search-result:hover,
.search-result:focus-visible,
.search-result.is-active {
  background: #303030 !important;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: #2c2f2d !important;
  color: var(--text) !important;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: #2c2f2d !important;
  color: var(--text) !important;
}

.brand img,
.product-video,
.product-video video,
.product-video iframe,
.video-caption,
.application-image,
.leader-card img,
.news-card img,
.news-card video,
.news-post-media,
.news-post-media img,
.news-post-media video,
.who-leader-card img,
.product-hero-image img,
.applications-hero-image img,
.product-page-image img,
.partner-flag,
.map-frame iframe {
  border-radius: 0 !important;
}

.product-video,
.application-image,
.product-hero-image,
.applications-hero-image,
.product-page-image,
.map-frame {
  border: 0 !important;
  background-color: var(--panel-solid) !important;
  box-shadow: var(--frame-shadow) !important;
}

.product-video::after,
.ticket-card::after {
  display: none !important;
}

.video-caption,
.contact-form input,
.contact-form select,
.contact-form textarea,
.search-input,
.premium-request-row input,
.recruiting-form input:not([type="file"]),
.recruiting-form select,
.recruiting-form input[type="file"] {
  border-color: transparent !important;
  border-radius: 0 !important;
  background: #f2f1ec !important;
  color: #050504 !important;
  box-shadow: var(--frame-shadow-soft) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.search-input::placeholder,
.premium-request-row input::placeholder {
  color: #655d5a;
}

.button,
.header-cta,
.nav-toggle,
.download-btn,
.job-apply-link,
.social-row a {
  border: 0 !important;
  background: #d98f36 !important;
  color: #050504 !important;
  box-shadow: var(--frame-shadow-soft) !important;
}

.partner-contact-list a {
  display: inline !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--cyan) !important;
  box-shadow: none !important;
}

.partner-contact-list a:hover,
.partner-contact-list a:focus-visible {
  color: var(--text) !important;
}

.search-toggle,
.language-trigger {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.search-toggle:hover,
.search-toggle:focus-visible,
.language-trigger:hover,
.language-trigger:focus-visible {
  background: transparent !important;
  color: var(--text) !important;
}

.video-play-button {
  border: 0 !important;
  box-shadow: var(--frame-shadow-soft) !important;
}

.button.primary,
.button.primary.premium-request-button {
  background-color: #d98f36 !important;
  background-image: none !important;
  color: #050504 !important;
}

.social-row a.social-linkedin {
  background-color: #d98f36 !important;
  background-image: none !important;
  color: #050504 !important;
}

.button.secondary,
.header-cta,
.download-btn,
.job-apply-link {
  background: #d98f36 !important;
  color: #050504 !important;
}

.recruiting-submit-button {
  width: auto !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  font-size: 0.78rem !important;
}

.ticket-card {
  animation: none !important;
}

.ticket-card:hover,
.ticket-card:focus-visible {
  background: #2e2e2e !important;
  box-shadow: var(--frame-shadow) !important;
}

.premium-download-card,
.premium-download-card h3,
.download-card,
.download-card h3,
.news-card,
.news-card h3,
.news-post,
.news-post h2,
.who-leader-card,
.who-leader-card h2,
.product-card-grid article,
.product-card-grid h3,
.fit-card-grid article,
.fit-card-grid h3,
.benefit-scenario-grid article,
.benefit-scenario-grid h3,
.job-panel,
.job-panel summary,
.partner-card,
.partner-card h2 {
  color: var(--text) !important;
}

.premium-card-meta,
.premium-card-desc,
.download-desc,
.news-card p,
.news-post p,
.who-leader-card p:not(.who-role),
.product-card-grid p,
.fit-card-grid p,
.benefit-scenario-grid p,
.partner-copy address,
.job-panel summary small {
  color: var(--muted) !important;
}

.faq-item p,
.ticket-card-note,
.video-caption,
.partner-flag,
.footer-bottom {
  border-color: transparent !important;
}

.footer-cookie-settings {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.95rem;
  text-align: start;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 80;
  display: flex;
  justify-content: center;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(1040px, 100%);
  padding: clamp(20px, 3vw, 30px);
  border: 0;
  border-radius: 0;
  background: #202221;
  color: var(--text);
  box-shadow: var(--frame-shadow);
}

.cookie-banner-panel h2,
.cookie-modal-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.cookie-banner-panel p,
.cookie-modal-panel p,
.cookie-category small,
.cookie-category dd {
  color: var(--muted);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 4, 0.78);
}

.cookie-modal-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  padding: clamp(22px, 4vw, 36px);
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: #202221;
  box-shadow: var(--frame-shadow);
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #d98f36;
  color: #050504;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: var(--frame-shadow-soft);
}

.cookie-settings-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.cookie-category {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #2a2a2a;
  box-shadow: var(--frame-shadow-soft);
}

.cookie-category-toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.cookie-category input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #d98f36;
}

.cookie-category strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-category dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
}

.cookie-category div {
  display: grid;
  gap: 2px;
}

.cookie-category dt {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-category dd {
  margin: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .site-nav {
    right: 14px !important;
    left: auto !important;
    width: min(330px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    border: 0 !important;
    border-radius: 0 !important;
    background: #202221 !important;
    box-shadow: var(--frame-shadow-soft) !important;
  }

  .site-nav .dropdown {
    width: 100%;
    margin: 0 0 8px;
    padding: 6px;
    border: 0 !important;
    border-radius: 0 !important;
    background: #2a2a2a !important;
    box-shadow: var(--frame-shadow-soft) !important;
  }
}

@media (max-width: 720px) {
  .cookie-banner-panel {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 100%;
  }

  .cookie-category dl {
    grid-template-columns: 1fr;
  }
}
