:root {
  --bg: #040d1d;
  --bg-2: #0a2033;
  --panel: rgba(8, 25, 41, 0.86);
  --panel-soft: rgba(13, 36, 56, 0.78);
  --primary: #1161a8;
  --primary-2: #38bdf8;
  --gold: #f5be47;
  --gold-2: #ffdc7a;
  --coral: #f06f55;
  --mint: #7dd3c7;
  --text: #eff6ff;
  --muted: #b9cfe5;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.36);
  --max: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.18), transparent 31%),
    radial-gradient(circle at 88% 2%, rgba(245, 190, 71, 0.16), transparent 28%),
    linear-gradient(180deg, #020b17 0%, #030f1b 100%);
  color: var(--text);
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, rgba(7, 21, 36, 0.98), rgba(4, 14, 25, 1));
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(125, 211, 199, 0.035) 47%, transparent 53% 100%),
    linear-gradient(70deg, transparent 0 58%, rgba(245, 190, 71, 0.035) 62%, transparent 68% 100%);
  background-size: 190% 190%, 170% 170%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.9s ease;
  animation: ambientSweep 18s ease-in-out infinite alternate;
}

body.is-loaded .page-shell::before {
  opacity: 1;
}

.topbar,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(clamp(18px, 5vw, 72px), calc((100vw - var(--max)) / 2 + 24px));
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid rgba(4, 16, 29, 0.1);
  box-shadow: 0 12px 34px rgba(2, 11, 22, 0.12);
  backdrop-filter: blur(14px);
  color: #071a2d;
  transform: translateY(-12px);
  opacity: 0;
  transition:
    transform 0.75s var(--ease-out),
    opacity 0.75s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.topbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary-2), var(--mint));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  opacity: 0.92;
  pointer-events: none;
}

body.is-loaded .topbar {
  transform: translateY(0);
  opacity: 1;
}

body.is-scrolled .topbar {
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 16px 38px rgba(2, 11, 22, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: clamp(172px, 17vw, 250px);
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(9, 28, 46, 0.12));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 24px);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  color: rgba(5, 20, 36, 0.76);
  transition: color 0.2s ease;
}

.main-nav a::after,
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s var(--ease-out);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #06182b;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(7, 26, 43, 0.04);
  border: 1px solid rgba(6, 26, 43, 0.14);
  border-radius: 8px;
  font-weight: 700;
  color: #081d31;
  cursor: pointer;
  transition: transform 0.24s var(--ease-out), border-color 0.24s ease, background 0.24s ease;
}

.lang-switch:hover {
  background: rgba(7, 26, 43, 0.08);
  border-color: rgba(6, 26, 43, 0.24);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 26, 43, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #071a2d;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f3c14f 0%, #e3aa2e 100%);
  color: #071a2d;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease, filter 0.24s ease;
}

.nav-cta:hover {
  box-shadow: 0 8px 18px rgba(227, 170, 46, 0.32);
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  --hero-x: 0px;
  --hero-y: 0px;
  --scroll-drift: 0px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: min(720px, calc(100vh - 72px));
  padding: 48px max(clamp(22px, 6vw, 96px), calc((100vw - var(--max)) / 2 + 24px)) 58px;
  background:
    linear-gradient(90deg, rgba(2, 11, 23, 0.98) 0%, rgba(4, 15, 28, 0.9) 38%, rgba(4, 15, 28, 0.28) 68%, rgba(4, 15, 28, 0.74) 100%),
    radial-gradient(circle at 24% 50%, rgba(245, 190, 71, 0.12), transparent 32%),
    radial-gradient(circle at 74% 40%, rgba(56, 189, 248, 0.18) 0%, rgba(4, 12, 26, 0) 36%),
    url("assets/images/hero-global-network.png"),
    linear-gradient(180deg, #05172f 0%, #020d1e 100%);
  background-position:
    center,
    center,
    calc(50% + var(--hero-x)) calc(50% + var(--hero-y)),
    calc(100% + var(--hero-x)) calc(50% + var(--hero-y) + var(--scroll-drift)),
    center;
  background-size: cover, cover, cover, cover, cover;
  overflow: hidden;
  transition: background-position 0.5s ease-out;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(0deg, rgba(2, 9, 18, 0.32), transparent 34%);
  pointer-events: none;
  opacity: 0.74;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 48%, transparent 60% 100%);
  opacity: 0.16;
  transform: translateX(-65%);
  animation: heroSheen 7s ease-in-out 1.1s infinite;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 710px;
  padding: 18px 0 42px;
}

.hero h1 span,
.hero p,
.hero__actions {
  opacity: 0;
  transform: translateY(22px);
}

body.is-loaded .hero h1 span,
body.is-loaded .hero p,
body.is-loaded .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.86s ease, transform 0.86s var(--ease-out);
}

body.is-loaded .hero h1 span:nth-child(1) {
  transition-delay: 0.08s;
}

body.is-loaded .hero h1 span:nth-child(3) {
  transition-delay: 0.18s;
}

body.is-loaded .hero h1 span:nth-child(5) {
  transition-delay: 0.28s;
}

body.is-loaded .hero p {
  transition-delay: 0.4s;
}

body.is-loaded .hero__actions {
  transition-delay: 0.52s;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.1rem, 6.3vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 800;
  color: var(--text);
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
  margin-top: 0.32em;
}

.hero p {
  margin: 28px 0 0;
  max-width: 570px;
  font-size: 1.1rem;
  line-height: 1.68;
  color: rgba(231, 238, 249, 0.8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.24);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.btn-primary {
  background: linear-gradient(180deg, #f3c14f 0%, #e4ab2f 100%);
  color: #081a2e;
  box-shadow: 0 9px 25px rgba(245, 190, 71, 0.38);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: rgba(255,255,255,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-visual {
  display: none;
}

.brand-art {
  position: relative;
  width: min(640px, 100%);
  display: grid;
  place-items: center;
  padding: 24px 22px 18px;
}

.brand-art::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 93, 195, 0.28), transparent 62%);
  filter: blur(16px);
}

.brand-art__mark {
  position: relative;
  z-index: 1;
  display: block;
  width: min(520px, 88%);
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(7, 21, 36, 0.38));
}

.capabilities,
.journey,
.solutions {
  padding: 0 max(clamp(22px, 5vw, 72px), calc((100vw - var(--max)) / 2 + 24px)) 42px;
  background: linear-gradient(180deg, rgba(4, 16, 29, 0.96), rgba(3, 12, 22, 1));
}

.capabilities h2,
.journey h2,
.solutions h2 {
  margin: 0;
  padding: 44px 0 26px;
  text-align: center;
  font-size: clamp(1.9rem, 2.4vw, 2.55rem);
  letter-spacing: 0;
  color: var(--text);
  text-wrap: balance;
}

.capabilities h2,
.journey h2,
.solutions h2 {
  position: relative;
}

.capabilities h2::after,
.journey h2::after,
.solutions h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10%;
  min-width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

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

.capability-card {
  position: relative;
  min-height: 192px;
  padding: 24px 16px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    linear-gradient(180deg, rgba(13, 32, 55, 0.9), rgba(6, 22, 37, 0.92));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 190, 71, 0.42);
  background:
    linear-gradient(180deg, rgba(245, 190, 71, 0.08), transparent),
    linear-gradient(180deg, rgba(15, 42, 68, 0.95), rgba(6, 22, 37, 0.94));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22), 0 0 22px rgba(245, 190, 71, 0.08);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 190, 71, 0.42);
  background: rgba(245, 190, 71, 0.08);
  box-shadow: inset 0 0 18px rgba(245, 190, 71, 0.1);
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, box-shadow 0.28s ease;
}

.capability-card:hover .icon-wrap,
.principles article:hover .icon-wrap {
  border-color: rgba(255, 220, 122, 0.78);
  box-shadow: inset 0 0 20px rgba(245, 190, 71, 0.16), 0 0 24px rgba(245, 190, 71, 0.12);
  transform: translateY(-2px) scale(1.04);
}

.icon-wrap svg {
  width: 30px;
  height: 30px;
  fill: #f7d899;
}

.capability-card h3 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text);
}

.capability-card p {
  margin: 10px 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(215, 228, 244, 0.72);
}

.journey {
  padding-top: 10px;
}

.journey__track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  position: relative;
}

.journey__track::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(56,189,248,0.08), rgba(245,190,71,0.78), rgba(125,211,199,0.18));
  z-index: 0;
  opacity: 0.2;
  transform: scaleX(0);
  transform-origin: left;
}

.journey__track.is-visible::before {
  animation: trackDraw 1.05s var(--ease-out) both;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10px 6px 0;
}

.step__badge {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,190,71,0.82);
  border-radius: 8px;
  background: rgba(8, 25, 42, 0.96);
  color: var(--gold-2);
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(245,190,71,0.05), 0 14px 30px rgba(0,0,0,0.22);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

.step:hover .step__badge {
  box-shadow: 0 0 0 8px rgba(245,190,71,0.08), 0 18px 34px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

.step__number {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--gold-2);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(220, 232, 246, 0.72);
}

.solutions {
  padding-top: 10px;
}

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

.solution-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent),
    linear-gradient(180deg, rgba(7, 26, 46, 0.98), rgba(5, 19, 34, 0.97));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245,190,71,0.42);
  box-shadow: 0 28px 56px rgba(0,0,0,0.26);
}

.solution-card__visual {
  height: 176px;
  position: relative;
  --scroll-drift: 0px;
  background:
    linear-gradient(180deg, rgba(3, 13, 27, 0.04), rgba(3, 13, 27, 0.66));
  background-position: center calc(50% + var(--scroll-drift));
  background-size: cover;
  transform: scale(1);
  transition: transform 0.6s var(--ease-out), filter 0.35s ease;
  will-change: background-position;
}

.solution-card:hover .solution-card__visual {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.045);
}

.solution-card--1 .solution-card__visual {
  background:
    linear-gradient(180deg, rgba(3, 13, 27, 0.02), rgba(3, 13, 27, 0.72)),
    url("assets/images/solution-transformation-blueprint.png");
  background-position: center, center calc(50% + var(--scroll-drift));
  background-size: cover;
}

.solution-card--2 .solution-card__visual {
  background:
    linear-gradient(180deg, rgba(3, 13, 27, 0.02), rgba(3, 13, 27, 0.72)),
    url("assets/images/solution-program-delivery-office.png");
  background-position: center, center calc(50% + var(--scroll-drift));
  background-size: cover;
}

.solution-card--3 .solution-card__visual {
  background:
    linear-gradient(180deg, rgba(3, 13, 27, 0.04), rgba(3, 13, 27, 0.72)),
    url("assets/images/solution-investments-assets.png");
  background-position: center, center calc(50% + var(--scroll-drift));
  background-size: cover;
}

.solution-card--4 .solution-card__visual {
  background:
    linear-gradient(180deg, rgba(3, 13, 27, 0.02), rgba(3, 13, 27, 0.72)),
    url("assets/images/solution-funding-impact.png");
  background-position: center, center calc(50% + var(--scroll-drift));
  background-size: cover;
}

.solution-card--5 .solution-card__visual {
  background:
    linear-gradient(180deg, rgba(3, 13, 27, 0.02), rgba(3, 13, 27, 0.72)),
    url("assets/images/solution-consortium-builder.png");
  background-position: center, center calc(50% + var(--scroll-drift));
  background-size: cover;
}

.solution-card--6 .solution-card__visual {
  background:
    linear-gradient(180deg, rgba(3, 13, 27, 0.02), rgba(3, 13, 27, 0.72)),
    url("assets/images/solution-governance360.png");
  background-position: center, center calc(50% + var(--scroll-drift));
  background-size: cover;
}

.page-shell--inner {
  max-width: none;
}

.inner-page {
  background:
    radial-gradient(circle at 72% 18%, rgba(56, 189, 248, 0.16), transparent 30%),
    radial-gradient(circle at 20% 12%, rgba(245, 190, 71, 0.11), transparent 25%),
    linear-gradient(180deg, rgba(3, 14, 29, 0.98), rgba(2, 10, 20, 1));
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(224, 236, 249, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.breadcrumb a {
  color: rgba(224, 236, 249, 0.78);
}

.about-hero,
.listing-head,
.contact-layout {
  padding: 48px max(clamp(22px, 6vw, 96px), calc((100vw - var(--max)) / 2 + 24px)) 56px;
}

.about-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
  min-height: 390px;
}

.about-hero h1,
.listing-head h1,
.contact-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-hero p,
.listing-head p,
.contact-copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(224, 236, 249, 0.8);
  font-size: 1rem;
  line-height: 1.65;
}

.about-hero__visual {
  min-height: 300px;
  --scroll-drift: 0px;
  background:
    linear-gradient(90deg, rgba(3, 14, 29, 0.45), rgba(3, 14, 29, 0.04)),
    url("assets/images/about-city-bridge.png");
  background-position: center, center calc(50% + var(--scroll-drift));
  background-size: cover;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  will-change: background-position;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.principles article {
  padding: 34px 34px 38px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.015);
  transition: background 0.28s ease, transform 0.28s var(--ease-out);
}

.principles article:hover {
  background: rgba(255,255,255,0.032);
  transform: translateY(-3px);
}

.principles article:last-child {
  border-right: none;
}

.icon-wrap--small {
  width: 58px;
  height: 58px;
}

.principles h2 {
  margin: 14px 0 8px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0;
}

.principles p {
  margin: 0 auto;
  max-width: 230px;
  color: rgba(224, 236, 249, 0.72);
  font-size: 0.82rem;
  line-height: 1.55;
}

.listing-head {
  padding-bottom: 0;
}

.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  font-size: 0.82rem;
  font-weight: 800;
}

.solution-tabs a {
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(224, 236, 249, 0.82);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.24s var(--ease-out), background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.solution-tabs a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.075);
  border-color: rgba(245,190,71,0.24);
}

.solution-tabs .is-active {
  background: rgba(245,190,71,0.1);
  border-color: rgba(245,190,71,0.32);
  color: var(--gold);
}

.solution-tabs .is-active::before {
  content: ">";
  margin-right: 7px;
}

.solutions--listing {
  padding-top: 28px;
  background: transparent;
}

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

.solutions-grid--six .solution-card {
  min-height: 260px;
  border-color: rgba(245, 190, 71, 0.36);
  border-radius: 8px;
}

.solutions-grid--six .solution-card__visual {
  height: 132px;
}

.solution-card h2 {
  margin: 18px 20px 18px;
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.solution-card > a {
  display: inline-flex;
  margin: 0 20px 20px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
}

.solution-card > a::after {
  content: ">";
  margin-left: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(340px, 1.15fr);
  gap: 48px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding-left: 28px;
  position: relative;
  color: rgba(224, 236, 249, 0.76);
  font-size: 0.9rem;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.contact-list strong {
  color: var(--gold);
  font-size: 0.85rem;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(16, 160, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.24s var(--ease-out), background 0.24s ease, border-color 0.24s ease;
}

.social-row a:hover {
  background: rgba(245, 190, 71, 0.16);
  border-color: rgba(245, 190, 71, 0.34);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  box-shadow: 0 20px 44px rgba(0,0,0,0.18);
}

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

.contact-form label {
  display: grid;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(189, 211, 236, 0.38);
  border-radius: 8px;
  background: rgba(2, 12, 24, 0.78);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 138px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(224, 236, 249, 0.58);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(2, 12, 24, 0.9);
  box-shadow: 0 0 0 3px rgba(245, 190, 71, 0.14);
}

.contact-form .btn {
  width: 100%;
  min-height: 50px;
  border-radius: 7px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(224, 236, 249, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
  padding: 34px max(clamp(22px, 6vw, 96px), calc((100vw - var(--max)) / 2 + 24px)) 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 11, 22, 0.96);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: rgba(224, 236, 249, 0.64);
  font-size: 0.76rem;
}

.footer-brand img {
  width: 150px;
  filter: brightness(1.8);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 0.78rem;
}

.site-footer strong {
  margin-bottom: 6px;
  color: var(--text);
}

.site-footer a {
  color: rgba(224, 236, 249, 0.68);
  transition: color 0.22s ease, transform 0.22s var(--ease-out);
}

.site-footer a:hover {
  color: var(--gold-2);
  transform: translateX(3px);
}

.solution-card h3,
.solution-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.solution-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.1rem, 1.2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.solution-card p {
  margin: 0;
  color: rgba(219, 231, 245, 0.76);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-bottom: 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 8px max(clamp(22px, 5vw, 72px), calc((100vw - var(--max)) / 2 + 24px)) 38px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(14, 29, 44, 0.62);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 138px;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.28s ease;
}

.stat-item:hover {
  background: rgba(255,255,255,0.035);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__value {
  font-size: clamp(1.85rem, 2.3vw, 2.7rem);
  letter-spacing: 0;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-2);
  transition: transform 0.28s var(--ease-out), text-shadow 0.28s ease;
}

.stat-item:hover .stat-item__value {
  text-shadow: 0 0 22px rgba(245, 190, 71, 0.18);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s ease var(--reveal-delay, 0ms),
    transform 0.72s var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes ambientSweep {
  from {
    background-position: 0% 38%, 100% 10%;
  }

  to {
    background-position: 100% 62%, 0% 90%;
  }
}

@keyframes heroGlow {
  from {
    opacity: 0.58;
  }

  to {
    opacity: 0.86;
  }
}

@keyframes heroSheen {
  0%,
  42% {
    transform: translateX(-68%);
  }

  72%,
  100% {
    transform: translateX(68%);
  }
}

@keyframes trackDraw {
  from {
    transform: scaleX(0);
    opacity: 0.2;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.stat-item__label {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(218,232,246,0.76);
}

.stat-item--impact .stat-item__value {
  font-size: clamp(1.6rem, 1.8vw, 2.2rem);
  color: var(--text);
}

@media (max-width: 1100px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 18px;
    background:
      linear-gradient(180deg, rgba(2, 11, 23, 0.95) 0%, rgba(3, 14, 29, 0.82) 48%, rgba(3, 14, 29, 0.96) 100%),
      url("assets/images/hero-global-network.png"),
      linear-gradient(180deg, #05172f 0%, #020d1e 100%);
    background-position: center, 58% center, center;
    background-size: cover, cover, cover;
  }

  .hero__content {
    text-align: center;
    padding-bottom: 10px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

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

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

  .journey__track::before {
    display: none;
  }

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

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

  .about-hero__content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-hero__visual {
    min-height: 280px;
    clip-path: none;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: 100%;
    margin: 0;
  }

  .topbar {
    padding-left: 16px;
    padding-right: 16px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-text small {
    letter-spacing: 0;
    font-size: 0.5rem;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 16px;
    background: rgba(244, 245, 248, 0.98);
    border-top: 1px solid rgba(4, 16, 29, 0.08);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
    font-size: 0.92rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s var(--ease-out);
  }

  .topbar.is-menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(6, 26, 43, 0.1);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover::after,
  .main-nav a[aria-current="page"]::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-cta,
  .lang-switch {
    display: none;
  }

  .brand-logo {
    width: min(190px, 62vw);
  }

  .hero {
    min-height: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    font-size: 0.96rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .globe {
    width: min(480px, 100%);
  }

  .capabilities,
  .journey,
  .solutions {
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

  .solutions-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .about-hero,
  .listing-head,
  .contact-layout {
    padding: 28px 18px 34px;
  }

  .principles,
  .solutions-grid--six,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .principles article {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .principles article:last-child {
    border-bottom: none;
  }

  .solution-tabs {
    gap: 12px 16px;
  }

  .site-footer {
    padding: 28px 18px 34px;
  }
}

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

  .hero,
  .reveal,
  .topbar,
  .hero h1 span,
  .hero p,
  .hero__actions {
    transform: none !important;
    opacity: 1 !important;
  }
}
