:root {
  color-scheme: light;
  --ink: #071522;
  --muted: #5d6a75;
  --line: #dbe4ea;
  --cloud: #eef7f7;
  --panel: #ffffff;
  --navy: #071827;
  --teal: #0a8c8c;
  --teal-dark: #066b70;
  --amber: #c88428;
  --green: #6f8d4e;
  --shadow: 0 18px 60px rgba(7, 21, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #f8fbfc;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(7, 21, 34, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 44px rgba(7, 21, 34, 0.16);
  transition: padding 220ms ease, margin 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 50px rgba(7, 21, 34, 0.2);
}

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

.brand-logo {
  display: block;
  width: 136px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.24));
  transition: transform 180ms ease;
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 9px;
  border-radius: 8px;
  color: rgba(7, 21, 34, 0.76);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(10, 140, 140, 0.1);
  transform: translateY(-1px);
}

.site-nav .lang-link {
  margin-left: 6px;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 800;
}

.site-nav .lang-link:hover {
  color: #fff;
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(7, 21, 34, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/wetechit-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 14, 24, 0.94) 0%, rgba(5, 14, 24, 0.78) 42%, rgba(5, 14, 24, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 14, 24, 0.18), rgba(5, 14, 24, 0.86));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 70px;
  animation: heroEnter 720ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #82e8df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 21, 34, 0.18);
}

.button.primary {
  color: #06141e;
  background: #82e8df;
}

.button.primary:hover {
  background: #ffffff;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  margin-top: 18px;
  color: var(--teal-dark);
  border-color: rgba(10, 140, 140, 0.32);
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 54px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
  animation: fadeUp 560ms ease both;
}

.trust-row span:nth-child(2) {
  animation-delay: 90ms;
}

.trust-row span:nth-child(3) {
  animation-delay: 180ms;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 94px 0;
}

.page-hero {
  display: grid;
  min-height: 520px;
  align-items: end;
  padding: 150px max(16px, calc((100% - 1180px) / 2)) 78px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 14, 24, 0.94), rgba(5, 14, 24, 0.62)),
    url("assets/wetechit-hero.png") center / cover;
}

.page-hero > div {
  max-width: 850px;
  animation: heroEnter 700ms ease both;
}

.project-hero {
  background:
    linear-gradient(90deg, rgba(5, 14, 24, 0.94), rgba(5, 14, 24, 0.58)),
    linear-gradient(135deg, #071827, #0a5f67 58%, #c88428);
}

.data-hero {
  background:
    linear-gradient(90deg, rgba(5, 14, 24, 0.94), rgba(5, 14, 24, 0.52)),
    linear-gradient(135deg, #071827, #0a8c8c 52%, #6f8d4e);
}

.sap-hero {
  background:
    linear-gradient(90deg, rgba(5, 14, 24, 0.94), rgba(5, 14, 24, 0.54)),
    linear-gradient(135deg, #071827, #066b70 48%, #c88428);
}

.contact-hero,
.about-hero {
  background:
    linear-gradient(90deg, rgba(5, 14, 24, 0.94), rgba(5, 14, 24, 0.5)),
    url("assets/wetechit-hero.png") center / cover;
}

.section-heading {
  max-width: 800px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

.intro > p,
.contact-content p,
.capability-list p,
.steps p,
.service-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.expertise-section {
  border-top: 1px solid var(--line);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-card {
  display: block;
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 28px rgba(7, 21, 34, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.detail-card:hover {
  border-color: rgba(10, 140, 140, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(7, 21, 34, 0.12);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--cloud);
  transition: transform 220ms ease;
}

.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.04);
}

.cloud-icon {
  background:
    radial-gradient(circle at 35% 58%, var(--teal) 0 9px, transparent 10px),
    radial-gradient(circle at 55% 45%, var(--teal-dark) 0 13px, transparent 14px),
    linear-gradient(var(--cloud), var(--cloud));
}

.project-icon {
  background:
    linear-gradient(90deg, var(--amber) 0 9px, transparent 9px 16px, var(--teal-dark) 16px 25px, transparent 25px 32px, var(--green) 32px 41px),
    var(--cloud);
}

.data-icon {
  background:
    linear-gradient(180deg, transparent 0 12px, var(--teal) 12px 20px, transparent 20px 28px, var(--amber) 28px 36px, transparent 36px),
    var(--cloud);
}

.sap-icon {
  background:
    linear-gradient(135deg, var(--teal-dark), var(--teal) 58%, var(--amber));
}

.approach {
  width: 100%;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  color: #fff;
  background: var(--navy);
}

.approach .eyebrow {
  color: #82e8df;
}

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

.steps article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.steps span {
  display: inline-block;
  margin-bottom: 28px;
  color: #82e8df;
  font-weight: 800;
}

.steps p {
  color: rgba(255, 255, 255, 0.7);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.detail-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 21, 34, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.72;
}

.devops-metrics {
  border-top: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.metric-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 21, 34, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.metric-card:hover {
  border-color: rgba(10, 140, 140, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(7, 21, 34, 0.12);
}

.metric-card p {
  color: var(--muted);
  line-height: 1.72;
}

.pipeline-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.pipeline-flow span {
  position: relative;
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(10, 140, 140, 0.24);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #eef7f7;
  font-weight: 800;
}

.pipeline-flow span::after {
  position: absolute;
  right: -11px;
  color: var(--amber);
  content: "→";
}

.pipeline-flow span:nth-child(2n)::after,
.pipeline-flow span:last-child::after {
  content: "";
}

.bar-chart {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.bar-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 52px;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.bar-row div {
  height: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f4;
}

.bar-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  animation: growBar 900ms ease both;
}

.bar-row strong {
  color: var(--ink);
  font-size: 15px;
  text-align: right;
}

.metric-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.platform-visual {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(10, 140, 140, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 140, 140, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 44px 44px;
  box-shadow: 0 12px 38px rgba(7, 21, 34, 0.08);
}

.platform-map::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--amber));
  content: "";
  transform: translateY(-50%);
}

.platform-node {
  position: relative;
  z-index: 1;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(10, 140, 140, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(7, 21, 34, 0.08);
}

.platform-node span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.platform-node h3 {
  margin-bottom: 10px;
}

.platform-node p {
  color: var(--muted);
  line-height: 1.62;
}

.platform-node.platform span,
.platform-node.teams span {
  background: var(--teal);
}

.platform-node.reliability span {
  background: var(--amber);
}

.platform-core {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 1 / -1;
  width: 100%;
  min-height: 86px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(8, 23, 68, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #f7fbfb;
  box-shadow: 0 14px 34px rgba(7, 21, 34, 0.13);
  text-align: center;
}

.platform-core strong {
  font-size: 20px;
}

.platform-core span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.sre-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.sre-scoreboard div {
  display: grid;
  min-height: 110px;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sre-scoreboard strong {
  color: var(--teal-dark);
  font-size: 34px;
  line-height: 1;
}

.sre-scoreboard span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.ai-impact-section {
  background: #f7fbfb;
}

.ai-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.ai-impact-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(8, 23, 68, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 21, 34, 0.05);
}

.ai-impact-card h3 {
  margin-bottom: 12px;
}

.ai-impact-card p {
  color: var(--muted);
  line-height: 1.68;
}

.ai-impact-chart {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 21, 34, 0.07);
}

.ai-impact-chart div {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) 64px minmax(0, 1.4fr);
  gap: 14px;
  align-items: center;
}

.ai-impact-chart span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.ai-impact-chart strong {
  color: var(--ink);
  font-size: 16px;
  text-align: right;
}

.ai-impact-chart i {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--amber));
  animation: growBar 900ms ease both;
}

.ai-governance-section {
  background: #fff;
}

.ai-governance-intro {
  max-width: 920px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.governance-blueprint {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 36px;
}

.governance-core {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(8, 23, 68, 0.18);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  box-shadow: 0 18px 48px rgba(7, 21, 34, 0.18);
  text-align: center;
}

.governance-core strong {
  font-size: clamp(28px, 4vw, 46px);
}

.governance-core span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.governance-control {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfb;
  box-shadow: 0 10px 30px rgba(7, 21, 34, 0.06);
}

.governance-control span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.governance-control strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
}

.governance-control p {
  color: var(--muted);
  line-height: 1.66;
}

.governance-lifecycle {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.governance-lifecycle div {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(10, 140, 140, 0.2);
  border-radius: 8px;
  background: #fff;
}

.governance-lifecycle div::after {
  position: absolute;
  top: 50%;
  right: -13px;
  color: var(--amber);
  font-weight: 800;
  content: "→";
  transform: translateY(-50%);
}

.governance-lifecycle div:last-child::after {
  content: "";
}

.governance-lifecycle strong {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 24px;
}

.governance-lifecycle span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.governance-lifecycle p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.risk-value-matrix {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  padding: 42px 32px 32px 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(8, 23, 68, 0.16) calc(50% - 1px), rgba(8, 23, 68, 0.16) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, transparent calc(50% - 1px), rgba(8, 23, 68, 0.16) calc(50% - 1px), rgba(8, 23, 68, 0.16) calc(50% + 1px), transparent calc(50% + 1px)),
    #f7fbfb;
}

.matrix-axis {
  position: absolute;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.matrix-axis.y {
  top: 50%;
  left: 14px;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.matrix-axis.x {
  right: 32px;
  bottom: 10px;
}

.matrix-cell {
  min-height: 138px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 21, 34, 0.07);
}

.matrix-cell strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
}

.matrix-cell span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.matrix-cell.scale {
  border: 1px solid rgba(10, 140, 140, 0.35);
  background: #eef7f7;
}

.matrix-cell.govern {
  border: 1px solid rgba(214, 56, 56, 0.25);
}

.quality-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  height: 210px;
  margin-top: 28px;
  align-items: end;
}

.quality-chart div {
  display: grid;
  height: 100%;
  align-items: end;
  gap: 10px;
}

.quality-chart i {
  display: block;
  min-height: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  animation: growColumn 900ms ease both;
}

.quality-chart i.lower {
  background: linear-gradient(180deg, var(--amber), #d63838);
}

.quality-chart span {
  min-height: 58px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.quality-chart span strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 16px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 82px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.cta-band h2 {
  max-width: 720px;
  font-size: clamp(28px, 4vw, 44px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 70px;
}

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

.capability-list div {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.capability-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.capability-list p {
  margin: 0;
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 60px;
  border-top: 1px solid var(--line);
}

.about-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.timeline article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--teal-dark);
  font-weight: 800;
}

.timeline p,
.legal-box p {
  color: var(--muted);
  line-height: 1.72;
}

.countries-section {
  border-top: 1px solid var(--line);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.country-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(7, 21, 34, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.country-grid article:hover {
  border-color: rgba(10, 140, 140, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(7, 21, 34, 0.12);
}

.country-grid strong {
  display: block;
  margin-top: 16px;
  font-size: 20px;
}

.country-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.flag {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--cloud);
  font-size: 30px;
}

.legal-box {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(10, 140, 140, 0.2);
  border-radius: 8px;
  background: #fff;
}

.contact-page {
  margin-top: 78px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 60px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  padding: 44px;
  border-radius: 8px;
  background: #eaf4f3;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #243341;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bfd1d6;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 140, 140, 0.14);
  transform: translateY(-1px);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-logo {
  display: block;
  width: 142px;
  height: auto;
  margin-bottom: 6px;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 14px;
}

.site-footer a {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-14px, -8px, 0);
  }
}

@keyframes growBar {
  from {
    width: 0;
  }
}

@keyframes growColumn {
  from {
    height: 0;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(320px, 100%);
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(7, 21, 34, 0.2);
    transform-origin: top right;
    animation: menuEnter 160ms ease both;
  }

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

  .site-nav a {
    padding: 14px;
  }

  .intro,
  .content-grid,
  .split-section,
  .contact-section,
  .about-preview {
    grid-template-columns: 1fr;
  }

  .expertise-grid,
  .steps,
  .cards-3,
  .metrics-grid,
  .platform-map,
  .sre-scoreboard,
  .ai-impact-grid,
  .governance-blueprint,
  .governance-lifecycle,
  .timeline,
  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .risk-value-matrix {
    grid-template-columns: 1fr;
  }

  .governance-lifecycle div::after {
    content: "";
  }

  .platform-map::before {
    top: 34px;
    bottom: 34px;
    left: 50%;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }

  .platform-core {
    position: relative;
    grid-column: 1 / -1;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
  }
}

@keyframes menuEnter {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand-logo {
    width: 124px;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .section {
    padding: 68px 0;
  }

  .expertise-grid,
  .steps,
  .cards-3,
  .metrics-grid,
  .platform-map,
  .sre-scoreboard,
  .ai-impact-grid,
  .governance-blueprint,
  .governance-lifecycle,
  .timeline,
  .country-grid {
    grid-template-columns: 1fr;
  }

  .ai-impact-chart div {
    grid-template-columns: 1fr 54px;
  }

  .ai-impact-chart i {
    grid-column: 1 / -1;
  }

  .platform-map {
    padding: 20px;
  }

  .platform-map::before {
    left: 38px;
  }

  .platform-node {
    min-height: 0;
  }

  .governance-core,
  .governance-control,
  .governance-lifecycle div,
  .matrix-cell {
    min-height: 0;
  }

  .risk-value-matrix {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .matrix-axis {
    position: static;
    transform: none;
  }

  .page-hero {
    min-height: 500px;
  }

  .cta-band {
    display: grid;
    padding: 28px;
  }

  .service-card {
    min-height: auto;
  }

  .contact-section {
    width: calc(100% - 24px);
    padding: 28px;
  }

  .site-footer {
    display: grid;
  }
}
