﻿:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #000000;
  --text-muted: rgba(0, 0, 0, 0.7);
  --brand: #0d2ad3;
  --border: rgba(0, 0, 0, 0.8);
  --border-soft: rgba(0, 0, 0, 0.25);

  --container: 1150px;
  --gutter: 32px;

  --section: 120px;
  --radius: 7px;

  --header-h: 75px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

section {
  padding-block: var(--section);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: 65px;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 8px 20px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-secondary {
  background: #ffffff;
  color: #000;
  border-color: #ffffff;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 2px;
}

/* ---------------- HEADER ---------------- */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2000;
  background: transparent;
}

.header-inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 24px auto 0;
  height: var(--header-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 5px;
  background: rgba(155, 155, 155, 0.7);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.primary-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  height: 24px;
  line-height: 24px;
}

.primary-nav .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 0;
}

.primary-nav .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
}

.primary-nav .subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  z-index: 2300;
}

.primary-nav .subnav a {
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
}

.primary-nav .nav-item:hover .subnav,
.primary-nav .nav-item:focus-within .subnav {
  display: flex;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
}

.nav-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  height: 41px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(155, 155, 155, 0.7);
  color: #fff;
  border-radius: 5px;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.header-cta {
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin-block: 4px;
}

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

.is-hidden {
  display: none !important;
}

/* ---------------- HERO ---------------- */

.hero {
  min-height: 900px;
  display: grid;
  align-items: start;
  padding: 220px 0 140px;
  background: rgba(0, 0, 0, 0.5);
}

.hero-inner {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.hero p {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 632px;
  margin-inline: auto;
  line-height: 1.5;
}

.hero h1 {
  color: #fff;
}

.hero-actions {
  margin-top: 24px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* ---------------- LOGO STRIP (MARQUEE) ---------------- */

.logo-strip {
  padding: 80px 50px;
  background: #fff;
}

.logo-strip-inner {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 64px;
  align-items: center;
}

.logo-strip-button {
  height: 37px;
  padding: 8px 20px;
  border: 1px solid #000;
  background: #fff;
  font-size: 14px;
  cursor: default;
}

.logo-strip-viewport {
  overflow: hidden;
  width: 100%;
}

.logo-strip-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-left 60s linear infinite;
}

.logo-item {
  flex: 0 0 169px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-right: 1px solid var(--border);
  font-size: 12px;
  text-align: center;
  padding: 0 14px;
  white-space: nowrap;
}

.logo-item:first-child {
  border-left: 1px solid var(--border);
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------------- COMMUNITY ---------------- */

.community {
  padding: 120px 50px;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.community h2 {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
}

.community p {
  font-size: 25px;
  line-height: 1.5;
  color: #000;
}

.kpi-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 100px;
}

.kpi-card {
  display: grid;
  gap: 6px;
}

.kpi-value {
  font-size: 55px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
}

.kpi-label {
  font-size: 18px;
  color: #000;
}

/* ---------------- SERVICES ---------------- */

.services {
  padding: 120px 50px;
}

.services-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 80px;
}

.services-intro p {
  font-size: 16px;
  color: #000;
}

.services-intro {
  max-width: 500px;
}

.services-link {
  display: inline-flex;
  height: 41px;
  padding: 8px 20px;
  border: 1px solid #000;
  background: #fff;
  font-size: 14px;
  align-items: center;
  margin-top: 12px;
}

.services-layout {
  display: grid;
  grid-template-columns: 540px 720px;
  gap: 80px;
  align-items: start;
}

.service-tabs {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-tab {
  border: 0;
  background: transparent;
  border-bottom: 1px solid #000;
  padding: 0 0 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  opacity: 0.5;
}

.service-tab[aria-selected="true"] {
  border-bottom: 2.5px solid #000;
  opacity: 1;
}

.service-tab-label {
  font-size: 25px;
  font-weight: 400;
}

.service-tab[aria-selected="true"] .service-tab-label {
  font-weight: 700;
}

.service-tab-progress {
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.service-tab-progress::before {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background: #000;
}

.service-tab[aria-selected="true"] .service-tab-progress::before {
  animation: progress-fill 1000ms linear forwards;
}

@keyframes progress-fill {
  from { width: 0%; }
  to { width: 100%; }
}

.service-panel {
  width: 720px;
  height: 640px;
  border-radius: 0;
  padding: 0;
  background: linear-gradient(0deg, var(--brand), var(--brand));
  position: relative;
  overflow: hidden;
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 42, 211, 0.18), rgba(13, 42, 211, 0.55));
  opacity: 1;
  pointer-events: none;
}

.service-panel.is-transitioning {
  opacity: 0;
  transform: translateY(8px);
}

.service-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-cards {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 560px;
  height: 330px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-content: center;
  z-index: 2;
}

.service-card {
  height: 150px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px 40px;
}

.service-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* ---------------- TESTIMONIAL ---------------- */

.testimonial {
  padding: 120px 50px;
  background: #fff;
}

.testimonial-carousel {
  display: grid;
  gap: 50px;
}

.testimonial-track {
  position: relative;
  min-height: 640px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 630px 630px;
  gap: 80px;
  align-items: center;
}

.testimonial-media {
  width: 630px;
  height: 640px;
  border-radius: 0;
  overflow: hidden;
  background: #d6dbef;
  display: grid;
  place-items: center;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-placeholder {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d8dcee, #9aa1b7);
}

.testimonial-quote {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.testimonial-person {
  display: grid;
  gap: 6px;
}

.testimonial-meta p {
  margin: 0;
  font-size: 16px;
  color: #000;
}

.testimonial-divider {
  width: 1px;
  height: 48px;
  background: #000;
  display: inline-block;
}

.testimonial-company {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.testimonial-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef0fa;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  margin-top: 12px;
}

.testimonial-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 50px;
  width: 100%;
}

.testimonial-bar {
  border: 0;
  background: transparent;
  height: 0;
  border-top: 2px solid var(--border-soft);
  cursor: pointer;
  padding: 0;
}

.testimonial-bar[aria-current="true"] {
  border-top: 2.5px solid #000;
}

/* ---------------- PRODUCTS (2 ROW MARQUEE) ---------------- */

.products {
  padding: 120px 0;
  background: var(--brand);
  color: #fff;
}

.products h2 {
  color: #fff;
  text-align: center;
  max-width: 768px;
  margin: 0 auto 80px;
}

.products-viewport {
  width: 100%;
  overflow: hidden;
}

.products-rows {
  display: grid;
  gap: 22px;
  padding-bottom: 6px;
}

.products-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.products-marquee {
  display: grid;
  gap: 22px;
  overflow: hidden;
}

.products-row--top {
  animation: marquee-left-products 55s linear infinite;
}

.products-row--bottom {
  animation: marquee-right-products 58s linear infinite;
}

@keyframes marquee-left-products {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right-products {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  height: 101px;
  background: #e1e1e1;
  color: #000;
  padding: 20px;
  border-radius: 0;
  white-space: nowrap;
  transition: transform 160ms ease;
}

.product-pill:hover {
  transform: translateY(-1px);
}

.product-pill-brand {
  font-size: 20px;
  font-weight: 500;
  text-transform: lowercase;
}

.product-pill-divider {
  width: 1px;
  height: 61px;
  background: #000;
  opacity: 0.8;
}

.product-pill-tag {
  font-size: 20px;
  font-weight: 500;
}

/* ---------------- NEWS ---------------- */

.news {
  padding: 120px 50px;
}

.news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.news-archive-link {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

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

.news-card {
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.news-media {
  width: 100%;
  height: 232px;
  object-fit: cover;
  display: block;
  background: #d9d9d9;
}

.news-content {
  padding: 24px;
  background: var(--brand);
  color: #fff;
  display: grid;
  gap: 10px;
}

.news-content h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.news-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.news-content p {
  color: rgba(255, 255, 255, 0.9);
}

.news-link {
  color: #fff;
  font-weight: 500;
}

/* ---------------- APPLY ---------------- */

.apply {
  padding: 120px 50px;
  background: var(--brand);
  color: #fff;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.apply p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.apply-form {
  width: 680px;
  padding: 40px;
  background: #fff;
  color: #000;
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.apply-form label {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  height: 48px;
  border: 1px solid #000;
  border-radius: 0;
  font: inherit;
  padding: 0 12px;
}

.apply-form textarea {
  height: 80px;
  padding-top: 10px;
  resize: none;
}

.field-error {
  min-height: 16px;
  margin: 0;
  font-size: 13px;
  color: #cb3348;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
  color: #1e7a3a;
}

.apply-form .btn {
  width: 100%;
  height: 40px;
  margin-top: 6px;
}

/* ---------------- GOVERNANCE PAGE ---------------- */

.governance-page {
  background: #ffffff;
}

.governance-page .site-header {
  position: absolute;
}

.governance-page .governance-hero {
  background: #0d2ad3;
  padding: 250px 50px 120px;
}

.governance-hero h1 {
  color: #ffffff;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.2;
}

.governance-content {
  background: #eeeeee;
  padding: 120px 50px;
}

.governance-content .container {
  display: grid;
  gap: 120px;
}

.governance-block h2 {
  font-size: 55px;
  margin-bottom: 50px;
}

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

.team-card {
  display: grid;
  gap: 14px;
}

.team-photo {
  width: 100%;
  height: 296px;
  background-color: #cfcfcf;
}

.team-photo--a {
  background: linear-gradient(180deg, #d7d7d7, #ababab);
}

.team-photo--b {
  background: linear-gradient(180deg, #c8c8c8, #9f9f9f);
}

.team-photo--c {
  background: linear-gradient(180deg, #a9a9a9, #7b7b7b);
}

.team-photo--d {
  background: linear-gradient(180deg, #8f8f8f, #666666);
}

.team-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.team-meta h3 {
  margin: 0;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.2;
}

.team-meta p {
  margin: 2px 0 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
}

.team-social {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 1;
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  padding: 80px 50px;
  background: #000;
  color: #fff;
}

.footer-card {
  border-radius: 0;
  padding: 0 50px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
}

.footer-logo {
  color: #fff;
}

.footer-up {
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-main {
  margin-top: 32px;
  border-top: 1px solid #464850;
  border-bottom: 1px solid #464850;
  padding: 50px 0;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
}

.footer-cta {
  border-right: 1px solid #464850;
  padding-right: 40px;
  display: grid;
  gap: 20px;
}

.footer-label {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #464850;
}

.footer-cta-buttons {
  display: grid;
  gap: 12px;
  max-width: 220px;
}

.footer-about-btn {
  background: transparent;
  border: 1px solid #0d2ad3;
  color: #fff;
}

.footer-links-col {
  display: grid;
  gap: 32px;
}

.footer-email-block {
  display: grid;
  gap: 8px;
}

.footer-email-link {
  font-size: clamp(34px, 6vw, 65px);
  line-height: 1.2;
  color: #fff;
}

.footer-meta {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.footer-address p:last-child {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-transform: uppercase;
}

.footer-credits {
  padding: 32px 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-credits p {
  margin: 0;
  color: #464850;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  color: #464850;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1100px) {
  .header-inner {
    width: min(960px, calc(100% - 40px));
    padding: 0 18px;
  }

  .container {
    width: min(960px, calc(100% - 40px));
  }

  .community-grid,
  .services-layout,
  .apply-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .services-layout {
    gap: 42px;
  }

  .services-head {
    flex-direction: column;
    margin-bottom: 42px;
  }

  .services-intro {
    max-width: none;
  }

  .service-panel {
    width: 100%;
    height: 520px;
  }

  .testimonial-grid {
    gap: 36px;
  }

  .testimonial-media {
    width: 100%;
    height: 520px;
  }

  .testimonial-track {
    min-height: 520px;
  }

  .apply-form {
    width: 100%;
  }

  .footer-card,
  .footer-credits {
    padding-inline: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-cta {
    border-right: 0;
    border-bottom: 1px solid #464850;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .footer-meta {
    gap: 42px;
  }

  .news-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

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

  .products-viewport {
    overflow-x: auto;
  }

  .products-row {
    width: max-content;
  }

  .governance-page .governance-hero,
  .governance-content {
    padding-inline: 0;
  }

  .governance-page .governance-hero {
    padding-top: 210px;
    padding-bottom: 90px;
  }

  .governance-hero h1,
  .governance-block h2 {
    font-size: 44px;
  }

  .governance-content .container {
    gap: 90px;
  }

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

@media (max-width: 760px) {
  h1 {
    font-size: 40px;
  }

  .header-inner {
    padding: 0 12px;
    gap: 10px;
  }

  .menu-toggle {
    margin-left: 2px;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .language-switch {
    min-width: 92px;
    height: 40px;
    padding: 0 10px;
    white-space: nowrap;
    font-size: 14px;
    flex-shrink: 0;
  }

  .header-actions .btn {
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav.open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.24);
    z-index: 2200;
  }

  .primary-nav.open .subnav {
    position: static;
    display: flex;
    background: transparent;
    border: 0;
    padding: 0 0 0 12px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero {
    padding: 180px 0 120px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 420px;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .logo-strip-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-start;
  }

  .logo-strip-label {
    width: 100%;
  }

  .logo-strip-button {
    width: fit-content;
  }

  .logo-strip-viewport {
    width: 100%;
    overflow: hidden;
  }

  .logo-strip-marquee {
    animation: marquee-left 60s linear infinite;
  }

  .testimonial {
    padding: 90px 24px;
  }

  .testimonial-track {
    min-height: 0;
  }

  .testimonial-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .testimonial-slide.is-active {
    display: block;
  }

  .testimonial-grid {
    gap: 24px;
  }

  .testimonial-media {
    height: 320px;
  }

  .testimonial-quote {
    font-size: 22px;
    line-height: 1.4;
  }

  .testimonial-meta {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .testimonial-divider {
    height: 40px;
  }

  .products {
    padding: 100px 0;
  }

  .products h2 {
    margin-bottom: 56px;
    font-size: 40px;
    line-height: 1.1;
  }

  .service-cards {
    width: min(560px, calc(100% - 40px));
  }

  .testimonial-bars {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-row--top,
  .products-row--bottom {
    animation: none;
  }

  .products-viewport {
    overflow-x: auto;
  }

  .logo-strip-marquee {
    width: max-content;
  }

  .footer-main {
    padding: 36px 0;
  }

  .footer-meta {
    flex-direction: column;
    gap: 24px;
  }

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

  .governance-hero h1,
  .governance-block h2 {
    font-size: 40px;
  }

  .governance-content .container {
    gap: 64px;
  }

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

  .team-meta h3 {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .header-actions .btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .logo-strip-marquee,
  .products-row--top,
  .products-row--bottom {
    animation: none !important;
  }
}
