:root {
  color-scheme: dark;
  --bg: #070303;
  --panel: #0d0d0f;
  --panel-2: #141417;
  --line: rgba(255,255,255,.12);
  --red-line: rgba(215,25,47,.42);
  --muted: #b7b7bd;
  --text: #f6f6f7;
  --red: #d7192f;
  --red-2: #ff334a;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(215,25,47,.075) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 22%, rgba(215,25,47,.16), transparent 30%),
    radial-gradient(circle at 88% 64%, rgba(215,25,47,.10), transparent 28%),
    linear-gradient(135deg, transparent 0 46%, rgba(215,25,47,.07) 46% 49%, transparent 49% 100%);
  z-index: -3;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { color: var(--muted); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--white);
  color: #000;
  padding: 10px 14px;
  z-index: 30;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px clamp(16px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(215,25,47,.10), transparent 36%),
    rgba(5,5,5,.82);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(190px, 21vw, 300px);
  min-width: 180px;
}
.brand img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a,
.nav-services > button {
  border: 1px solid transparent;
  color: #e9e9ea;
  padding: 10px;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-services > button:hover,
.nav-services > button[aria-current="page"] {
  border-color: rgba(215,25,47,.45);
  color: var(--white);
  background: rgba(215,25,47,.12);
}
.nav-services { position: relative; }
.nav-services div {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  min-width: 280px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(12,12,14,.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}
.nav-services:hover div,
.nav-services:focus-within div {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #0b0b0c;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  object-fit: cover;
  object-position: 62% center;
}
.hero-scrim {
  background:
    radial-gradient(circle at 78% 50%, rgba(215,25,47,.18), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.38) 48%, rgba(0,0,0,.10)),
    linear-gradient(0deg, #070303 0%, transparent 34%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 32px));
  margin-left: clamp(16px, 7vw, 92px);
  padding-top: 20px;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.2vw, 3.9rem);
  text-transform: uppercase;
  color: var(--white);
}
h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  color: var(--white);
}
h3 { font-size: 1.18rem; }
.hero-content p:not(.eyebrow),
.page-hero p {
  max-width: 660px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.hero-actions,
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  font-weight: 800;
}
.btn.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 36px rgba(215,25,47,.2);
}
.btn.ghost { background: rgba(255,255,255,.06); }
.btn:hover { transform: translateY(-1px); }
.hero-quick-link {
  display: inline-flex;
  margin-top: 18px;
  color: #f1f1f3;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(215,25,47,.72);
  text-underline-offset: 5px;
}
.hero-quick-link:hover {
  color: var(--red-2);
}

.metrics-band,
.accreditation-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(215,25,47,.18), rgba(255,255,255,.025), rgba(215,25,47,.10)),
    #080809;
}
.metrics-band div,
.accreditation-band div {
  padding: 18px clamp(16px, 3vw, 30px);
  border-right: 1px solid var(--line);
}
.metrics-band b {
  display: block;
  color: var(--red-2);
  font-size: 2.1rem;
}
.metrics-band span { color: var(--muted); }
.accreditation-mark {
  min-height: 102px;
  display: grid;
  align-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215,25,47,.14), transparent 44%),
    linear-gradient(180deg, rgba(215,25,47,.10), transparent 70%),
    #080809;
  filter: grayscale(1);
}
.accreditation-mark b {
  display: block;
  color: #eeeeef;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}
.accreditation-mark span {
  max-width: 190px;
  color: #a9a9af;
  font-size: .86rem;
}

.partner-logo-band {
  border-top: 1px solid rgba(215,25,47,.38);
  border-bottom: 1px solid rgba(215,25,47,.38);
  background:
    linear-gradient(90deg, rgba(215,25,47,.18), rgba(255,255,255,.025), rgba(215,25,47,.12)),
    #080809;
}
.partner-logo-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: 18px 0;
}
.partner-logo-copy h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.partner-logo-copy a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red-2);
  font-weight: 900;
}
.partner-logo-carousel {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
  align-items: center;
}
.partner-logo-window {
  height: 296px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,8,9,.46);
}
.partner-logo-track {
  display: grid;
  gap: 10px;
  padding: 10px;
  transform: translateY(0);
  transition: transform .25s ease;
}
.partner-logo-control {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(215,25,47,.44);
  background: rgba(215,25,47,.14);
  color: var(--white);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
}
.partner-logo-control:hover {
  border-color: rgba(215,25,47,.76);
  background: rgba(215,25,47,.24);
}
.partner-logo-control:disabled {
  cursor: not-allowed;
  opacity: .38;
}
.partner-logo-card {
  min-width: 0;
  height: 88px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(90deg, rgba(215,25,47,.10), rgba(255,255,255,.035)),
    rgba(255,255,255,.025);
  overflow: hidden;
}
.partner-logo-card img {
  max-width: 148px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.18);
}
.partner-logo-card:nth-child(7) img,
.partner-logo-card:nth-child(8) img,
.partner-logo-card:nth-child(9) img {
  max-width: 176px;
  max-height: 64px;
}
.partner-logo-card span {
  max-width: 100%;
  color: #c9c9ce;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 58px) 0;
}
.section::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 38px;
  bottom: 38px;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: .55;
}
.intro-grid,
.detail-layout,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.section-copy p { max-width: 650px; }

.command-panel,
.contact-form,
.values article,
.partner-grid article {
  border: 1px solid var(--red-line);
  background:
    linear-gradient(145deg, rgba(215,25,47,.13), rgba(255,255,255,.035)),
    #0b090a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.command-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px;
}
.tab {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.tab.is-active {
  color: var(--white);
  background: rgba(215,25,47,.16);
  border-color: rgba(215,25,47,.42);
}
.tab-panel {
  grid-column: 1 / -1;
  min-height: 96px;
  padding: 18px 14px 4px;
  color: #ddd;
  font-size: 1.1rem;
}

.section-heading {
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-heading a {
  color: var(--red-2);
  font-weight: 800;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.service-grid.all {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  border: 1px solid rgba(215,25,47,.26);
  background:
    linear-gradient(180deg, rgba(215,25,47,.10), transparent 46%),
    #0b0809;
  min-height: 390px;
  overflow: hidden;
  transition: .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215,25,47,.75);
  box-shadow: 0 22px 60px rgba(215,25,47,.14);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.service-card span,
.service-card h3,
.service-card p,
.service-card b {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}
.service-card span {
  margin-top: 14px;
  color: var(--red-2);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}
.service-card h3 { margin-top: 8px; }
.service-card b {
  margin-top: 10px;
  color: var(--white);
}
.service-card p { margin-bottom: 8px; }

.ce-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ce-summary-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(215,25,47,.34);
  background:
    linear-gradient(145deg, rgba(215,25,47,.18), rgba(255,255,255,.045)),
    #0a090a;
  transition: .2s ease;
}
.ce-summary-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215,25,47,.72);
}
.ce-summary-card span {
  color: var(--red-2);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ce-summary-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.ce-summary-card p {
  margin: 0;
}
.ce-summary-card strong {
  color: var(--white);
  font-size: 1.5rem;
}
.ce-summary-card b {
  margin-top: auto;
  color: var(--white);
}

.pricing-section {
  display: grid;
  gap: 22px;
}
.pricing-package {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(215,25,47,.36);
  background:
    linear-gradient(145deg, rgba(215,25,47,.16), rgba(255,255,255,.04)),
    #0b090a;
}
.pricing-package-copy > p {
  margin-top: 14px;
}
.pricing-package-copy h3 {
  margin-top: 22px;
}
.pricing-features {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.pricing-features li {
  position: relative;
  padding-left: 30px;
  color: #e6e6e8;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255,255,255,.28);
  background: var(--red);
  box-shadow: 0 0 20px rgba(215,25,47,.45);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pricing-tier {
  min-height: 154px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    #f6f6f7;
  color: #050505;
  text-align: center;
}
.pricing-tier h3 {
  color: #050505;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}
.pricing-tier strong {
  color: #050505;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1;
}
.pricing-tier p {
  margin: 0;
  color: #171719;
  font-weight: 800;
}
.pricing-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #dedee2;
  font-size: .95rem;
}
.ce-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ce-faq-grid article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(215,25,47,.28);
  background:
    linear-gradient(145deg, rgba(215,25,47,.12), rgba(255,255,255,.035)),
    #0b090a;
}
.ce-faq-grid h3 {
  margin-bottom: 10px;
}
.ce-faq-grid p {
  margin-bottom: 0;
}

.cta-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto clamp(44px, 6vw, 76px);
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(215,25,47,.38);
  background:
    linear-gradient(120deg, rgba(215,25,47,.2), rgba(255,255,255,.04)),
    #09090a;
}
.cta-strip h2 { font-size: clamp(1.9rem, 3.4vw, 3.35rem); }

.page-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero.compact { min-height: 420px; }
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 46%, rgba(215,25,47,.16), transparent 26%),
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(20,2,4,.50), rgba(0,0,0,.12)),
    linear-gradient(0deg, #070303, transparent 48%);
}
.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 48px;
}
.service-hero .btn { margin-top: 10px; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-list article {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px 14px;
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(215,25,47,.32);
  background:
    linear-gradient(90deg, rgba(215,25,47,.12), transparent),
    rgba(255,255,255,.035);
}
.feature-list span {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(215,25,47,.55);
}
.feature-list p {
  grid-column: 2;
  margin: 0;
}

.detail-copy {
  padding: 22px;
  border: 1px solid var(--red-line);
  background:
    linear-gradient(145deg, rgba(215,25,47,.16), rgba(255,255,255,.035)),
    #0b0809;
}

.operating-model > div:last-child {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.operating-model article {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--red-line);
  background:
    linear-gradient(145deg, rgba(215,25,47,.24), rgba(255,255,255,.045)),
    #09090a;
  overflow: hidden;
}
.operating-model article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255,255,255,.1);
  transform: rotate(18deg);
}
.operating-model span {
  display: block;
  margin-bottom: 26px;
  color: var(--red-2);
  font-size: 1.55rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-route > div:last-child {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.service-route article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(215,25,47,.42);
  background:
    linear-gradient(145deg, rgba(215,25,47,.22), rgba(255,255,255,.035)),
    #0b0708;
}
.service-route b {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--red-2);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-route h3 {
  margin-bottom: 10px;
}

.scheme-section {
  padding-top: clamp(36px, 5vw, 60px);
}
.scheme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.scheme-card {
  position: relative;
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(215,25,47,.26);
  border-top: 5px solid var(--red);
  background:
    linear-gradient(145deg, rgba(215,25,47,.14), rgba(255,255,255,.045)),
    #0b0b0d;
  overflow: hidden;
}
.scheme-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  top: -80px;
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(18deg);
}
.scheme-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(215,25,47,.16);
  color: var(--white);
  font-weight: 900;
}
.scheme-card h3 {
  max-width: 460px;
  font-size: 1.35rem;
}
.scheme-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red-2);
  font-weight: 900;
}
.scheme-card p { min-height: 70px; }

.process > div,
.partner-grid,
.values,
.product-strip > div,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.process article,
.product-strip article,
.team-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(215,25,47,.26);
  background:
    linear-gradient(145deg, rgba(215,25,47,.13), rgba(255,255,255,.03)),
    #0b0809;
}
.values article {
  min-height: 142px;
  padding: 24px;
}
.values article p {
  margin-bottom: 0;
}
.process b {
  color: var(--red-2);
  font-size: 2rem;
}
.product-strip article a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red-2);
  font-weight: 900;
}
.integration-strip > div:last-child {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.integration-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(215,25,47,.28);
  background: rgba(215,25,47,.10);
  color: #eeeeef;
  font-weight: 900;
  text-align: center;
}

.partner-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-bottom: 20px;
}
.partner-intro > p {
  margin-top: 0;
  font-size: 1.08rem;
}
.partner-directory {
  display: grid;
  gap: 18px;
  padding-top: 16px;
}
.partner-profile {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(215,25,47,.28);
  background:
    linear-gradient(145deg, rgba(215,25,47,.13), rgba(255,255,255,.035)),
    #0a0a0b;
}
.partner-profile-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.recommend-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.recommend-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.recommend-tags .startup { background: rgba(255,115,22,.18); border-color: rgba(255,115,22,.42); }
.recommend-tags .sme { background: rgba(255,196,35,.16); border-color: rgba(255,196,35,.38); }
.recommend-tags .enterprise { background: rgba(80,145,255,.16); border-color: rgba(80,145,255,.38); }
.recommend-tags .defence { background: rgba(215,25,47,.2); border-color: rgba(215,25,47,.45); }
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.partner-benefits span {
  display: block;
  padding: 14px;
  border: 1px solid rgba(215,25,47,.24);
  background: rgba(215,25,47,.08);
  color: #e6e6e8;
}
.partner-services {
  margin-bottom: 0;
  color: #dedee2;
}

.team-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}
.team-emblem {
  position: sticky;
  top: 120px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 34%, rgba(215,25,47,.22), rgba(255,255,255,.035) 60%, rgba(255,255,255,.02));
  padding: 38px;
}
.team-emblem img {
  width: 100%;
  filter: drop-shadow(0 0 34px rgba(215,25,47,.25));
}
.team-grid article {
  min-height: 132px;
}
.team-grid p {
  margin-bottom: 0;
}

.contact-layout {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 58px) 0;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.contact-layout::before {
  content: "";
  position: absolute;
  inset: 16px -24px auto;
  height: min(520px, calc(100% - 32px));
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(10,2,3,.86), rgba(80,0,8,.34)),
    url("about-trust.png") center / cover;
  opacity: .66;
  z-index: -1;
}
.contact-copy h1 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.contact-cards a {
  padding: 16px;
  border: 1px solid rgba(215,25,47,.34);
  background: rgba(215,25,47,.08);
}
.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #f2f2f3;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #070708;
  color: var(--white);
  padding: 13px 14px;
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(215,25,47,.6);
  border-color: var(--red);
}
.hidden-field {
  position: absolute;
  left: -10000px;
}
.form-note {
  margin: 0;
  font-size: .9rem;
}
.form-alert {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-weight: 800;
}
.form-alert.success {
  border-color: rgba(215,25,47,.55);
  background: rgba(215,25,47,.14);
  color: var(--white);
}
.form-alert.error {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.contact-next {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .7fr repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: -18px;
}
.contact-next h2 {
  padding: 18px;
  border: 1px solid rgba(215,25,47,.38);
  background: rgba(215,25,47,.12);
  font-size: 1.45rem;
}
.contact-next article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(215,25,47,.32);
  background: rgba(215,25,47,.08);
}
.contact-next b {
  color: var(--red-2);
  font-size: 1.3rem;
}
.contact-next p { margin: 0; }

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr .75fr .75fr;
  gap: 30px;
  padding: 32px clamp(16px, 4vw, 46px);
  border-top: 1px solid rgba(215,25,47,.34);
  background:
    linear-gradient(90deg, rgba(215,25,47,.14), transparent 48%, rgba(215,25,47,.08)),
    #080809;
}
.site-footer img {
  width: min(390px, 100%);
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 560px;
}
.badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  color: #d8d8dc;
  filter: grayscale(1);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--red-2);
  text-transform: uppercase;
}
.site-footer a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
}
.site-footer a:hover { color: var(--white); }
.footer-legal {
  margin: 16px 0 0;
  color: #d0d0d5;
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(8,8,9,.98);
  }
  .site-nav.is-open { display: grid; }
  .nav-services div {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    min-width: 0;
    margin-top: 8px;
  }
  .hero { min-height: 620px; }
  .hero-bg { object-position: 70% center; }
  .metrics-band,
  .accreditation-band,
  .service-grid,
  .service-grid.all,
  .partner-logo-shell,
  .ce-summary-grid,
  .ce-faq-grid,
  .pricing-package,
  .scheme-grid,
  .intro-grid,
  .detail-layout,
  .split,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .process > div,
  .partner-grid,
  .values,
  .product-strip > div,
  .team-grid,
  .partner-benefits,
  .feature-list,
  .operating-model > div:last-child,
  .service-route > div:last-child,
  .contact-next,
  .partner-intro,
  .team-layout {
    grid-template-columns: 1fr;
  }
  .team-emblem { position: static; max-width: 280px; }
  .partner-logo-shell { align-items: start; }
}

@media (max-width: 640px) {
  .site-header { padding: 10px 14px; }
  .brand { width: 190px; }
  .brand img { height: 52px; }
  .hero { min-height: 610px; }
  .hero-bg { object-position: 74% center; }
  .hero-content { margin: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .metrics-band,
  .accreditation-band { grid-template-columns: 1fr 1fr; }
  .accreditation-band .accreditation-mark:last-child { grid-column: 1 / -1; }
  .command-panel { grid-template-columns: 1fr; }
  .tab-panel { grid-column: auto; }
  .page-hero { min-height: 460px; }
  .service-card { min-height: 0; }
  .partner-profile-head { display: grid; }
  .recommend-tags { justify-content: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .partner-logo-carousel {
    grid-template-columns: 42px 1fr 42px;
    gap: 8px;
  }
  .partner-logo-control {
    width: 42px;
    height: 42px;
  }
  .partner-logo-window { height: 276px; }
  .partner-logo-card {
    height: 82px;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    padding: 12px;
  }
  .partner-logo-card img {
    max-width: 108px;
    max-height: 44px;
  }
}
