:root {
  --navy-950: #061224;
  --navy-900: #07182f;
  --navy-800: #0b2444;
  --blue-700: #0d63ce;
  --blue-600: #1574e8;
  --cyan-400: #24d5ff;
  --cyan-300: #82eaff;
  --ink-900: #0b1628;
  --ink-700: #31415a;
  --ink-500: #66748a;
  --line: #dce6f2;
  --surface: #ffffff;
  --surface-soft: #f2f6fb;
  --cream: #fffdf6;
  --shadow: 0 18px 55px rgba(12, 23, 40, 0.13);
  --shadow-soft: 0 10px 32px rgba(12, 23, 40, 0.08);
  --radius: 8px;
  --header-height: 78px;
  --font-sans: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.006em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

button {
  font: inherit;
}

#home,
#about,
#services,
#network,
#projects,
#partners,
#team,
#clients,
#certificates,
#contact {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--cyan-300);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  color: #ffffff;
  background: rgba(6, 18, 36, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: var(--header-height);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 34px;
  height: 56px;
  object-fit: contain;
}

.brand strong,
.footer-brand span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

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

.site-nav a {
  padding: 10px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 9px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: #ffffff;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy-950);
}

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

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.76;
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.055);
  animation: hero-cinematic-pan 24s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 18, 36, 0.99) 0%, rgba(7, 24, 47, 0.91) 42%, rgba(7, 24, 47, 0.44) 72%, rgba(7, 24, 47, 0.24) 100%),
    linear-gradient(180deg, rgba(6, 18, 36, 0.1) 0%, rgba(6, 18, 36, 0.92) 100%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.54fr);
  align-items: center;
  gap: 56px;
  padding: 86px 0 98px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow,
.projects-section .eyebrow,
.contact-section .eyebrow {
  color: var(--cyan-300);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.4vw, 4.95rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.button-primary:hover {
  background: #0b5fc3;
  border-color: #0b5fc3;
}

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

.hero-panel {
  align-self: end;
  padding: 24px;
  color: #ffffff;
  background: rgba(6, 18, 36, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.hero-panel .panel-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 92px 0;
}

.network-section {
  padding-top: 0;
  background: #ffffff;
}

.network-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
  margin-top: -56px;
  padding: 30px;
  color: #ffffff;
  background: rgba(7, 24, 47, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(6, 18, 36, 0.34);
  backdrop-filter: blur(16px);
}

.network-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.network-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.stat-item {
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

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

.stat-item strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.overview-section {
  background: #ffffff;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 0.84fr);
  gap: 58px;
  align-items: center;
}

.overview-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 1.07rem;
}

.overview-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(21, 116, 232, 0.18), rgba(36, 213, 255, 0.08)),
    var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.overview-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 18, 36, 0.02) 25%, rgba(6, 18, 36, 0.56) 100%);
  content: "";
  pointer-events: none;
}

.overview-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  opacity: 0.96;
}

.overview-media figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  background: rgba(6, 18, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.42;
  backdrop-filter: blur(10px);
}

.value-section,
.clients-section {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.center-heading {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--ink-700);
  font-size: 1.04rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card,
.service-card,
.certificate-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(12, 23, 40, 0.06);
}

.value-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 116, 232, 0.34);
  box-shadow: var(--shadow-soft);
}

.icon-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 30% 24%, #ffffff 0, rgba(255, 255, 255, 0.72) 32%, transparent 58%),
    linear-gradient(145deg, #eef7ff, #ffffff);
  border: 1px solid rgba(21, 116, 232, 0.16);
  border-radius: 24px;
  box-shadow:
    0 16px 34px rgba(21, 116, 232, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.icon-badge::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  background: rgba(36, 213, 255, 0.13);
  filter: blur(14px);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.value-icon,
.service-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: saturate(1.06) drop-shadow(0 8px 10px rgba(11, 36, 68, 0.16));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.value-card:hover .icon-badge,
.service-card:hover .icon-badge,
.service-card:focus-within .icon-badge {
  transform: translateY(-3px) rotate(-2deg);
  box-shadow:
    0 20px 40px rgba(21, 116, 232, 0.18),
    0 0 0 5px rgba(36, 213, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.value-card:hover .value-icon,
.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: scale(1.08) rotate(2deg);
}

.value-card h3,
.service-card h3 {
  margin-bottom: 10px;
}

.value-card p,
.service-card p {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 0.93rem;
}

.services-section {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 292px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(238, 248, 255, 0.82) 0, rgba(255, 255, 255, 0) 96px),
    #ffffff;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(21, 116, 232, 0.34);
  box-shadow: 0 20px 48px rgba(12, 23, 40, 0.12);
}

.service-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: var(--ink-700);
  font-size: 0.92rem;
  line-height: 1.42;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 17px;
}

.service-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-600);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.projects-section {
  padding: 70px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #061224, #0b2444);
}

.project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.project-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
}

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

.project-grid > article {
  min-width: 0;
}

.project-card {
  display: block;
  height: 100%;
  overflow: hidden;
  color: var(--ink-900);
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  transition: transform 250ms ease, opacity 250ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.055);
  opacity: 0.9;
}

.project-body {
  min-height: 178px;
  padding: 16px;
}

.project-card h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.project-card p {
  min-height: 42px;
  margin-bottom: 14px;
  color: var(--ink-700);
  font-size: 0.84rem;
  line-height: 1.42;
}

.project-tag {
  display: inline-block;
  padding: 4px 8px;
  color: var(--blue-700);
  background: #e9f3ff;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: var(--navy-800);
  font-size: 0.78rem;
}

.project-link span {
  color: var(--blue-600);
  font-size: 1rem;
  transition: transform 160ms ease;
}

.project-card:hover .project-link span,
.project-card:focus-visible .project-link span {
  transform: translateX(3px);
}

.partners-section {
  background: #ffffff;
}

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

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 20px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(238, 248, 255, 0.7), rgba(255, 255, 255, 0) 70%),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(12, 23, 40, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 116, 232, 0.32);
  box-shadow: var(--shadow-soft);
}

.partner-logo img {
  max-width: 118px;
  max-height: 62px;
  object-fit: contain;
}

.partner-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--ink-500);
  font-size: 0.82rem;
  text-align: center;
}

.team-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 18, 36, 0.98), rgba(11, 36, 68, 0.96)),
    var(--navy-900);
}

.team-section .eyebrow {
  color: var(--cyan-300);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 38px;
}

.team-heading .section-heading {
  margin-bottom: 0;
}

.team-heading > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.team-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(130, 234, 255, 0.34);
}

.team-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  aspect-ratio: 4 / 3;
  color: rgba(255, 255, 255, 0.6);
  background:
    radial-gradient(circle at 50% 46%, rgba(36, 213, 255, 0.22), transparent 34%),
    radial-gradient(circle at 28% 20%, rgba(99, 102, 241, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(21, 116, 232, 0.2), rgba(6, 18, 36, 0.64));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.team-photo-placeholder::before {
  position: absolute;
  width: 132px;
  height: 132px;
  background: rgba(130, 234, 255, 0.1);
  filter: blur(24px);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.team-photo-placeholder img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  max-width: 230px;
  max-height: 190px;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.28));
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}

.team-card:hover .team-photo-placeholder img {
  transform: translateY(-5px) scale(1.06);
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.34));
}

.team-photo-placeholder span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card-body {
  padding: 22px;
}

.team-group {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 10px;
}

.team-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.carousel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.carousel-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy-900);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(12, 23, 40, 0.06);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: #ffffff;
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 12px 26px rgba(21, 116, 232, 0.24);
  transform: translateY(-2px);
}

.carousel-button:active {
  transform: translateY(0) scale(0.96);
}

.client-carousel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.client-carousel::before,
.client-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(46px, 12vw, 170px);
  content: "";
  pointer-events: none;
}

.client-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface-soft) 12%, rgba(242, 246, 251, 0.9) 36%, rgba(242, 246, 251, 0));
}

.client-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface-soft) 12%, rgba(242, 246, 251, 0.9) 36%, rgba(242, 246, 251, 0));
}

.client-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 0 18px;
}

.client-track::-webkit-scrollbar {
  display: none;
}

.client-logo {
  flex: 0 0 156px;
  display: grid;
  place-items: center;
  height: 94px;
  margin: 0;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(12, 23, 40, 0.06);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.client-logo:hover,
.client-logo:focus-within {
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(36, 213, 255, 0.62);
  box-shadow:
    0 16px 36px rgba(12, 23, 40, 0.12),
    0 0 24px rgba(36, 213, 255, 0.16);
}

.client-logo img {
  max-width: 118px;
  max-height: 56px;
  object-fit: contain;
}

.certificates-section {
  padding: 70px 0;
  background: #ffffff;
}

.certificates-section .section-heading {
  margin-bottom: 26px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.certificate-card {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--ink-900);
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.certificate-card:hover,
.certificate-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(21, 116, 232, 0.34);
  box-shadow: 0 20px 44px rgba(12, 23, 40, 0.12);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8eef6;
  border-bottom: 1px solid var(--line);
}

.certificate-card-title {
  display: block;
  min-height: 54px;
  margin: 0;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.certificate-preview {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  color: var(--ink-900);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.certificate-preview::backdrop {
  background: rgba(3, 11, 22, 0.82);
  backdrop-filter: blur(8px);
}

.certificate-preview-panel {
  display: grid;
  max-height: calc(100dvh - 32px);
  grid-template-rows: auto minmax(0, 1fr);
}

.certificate-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.certificate-preview-head h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.certificate-preview-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--navy-900);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.certificate-preview-close:hover {
  color: #ffffff;
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.certificate-preview-media {
  min-height: 0;
  padding: 20px;
  overflow: auto;
  background: #e8eef6;
}

.certificate-preview-media img {
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 130px);
  margin: 0 auto;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(12, 23, 40, 0.16);
}

body.has-certificate-preview {
  overflow: hidden;
}

.motion-ready .section-reveal {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .card-reveal {
  opacity: 0;
  translate: 0 18px;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    translate 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.motion-ready .section-reveal.is-visible,
.motion-ready .card-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes hero-cinematic-pan {
  0% {
    transform: scale(1.055) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.11) translate3d(-1.4%, 0.7%, 0);
  }
}

.project-detail-hero {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy-950);
}

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

.project-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.project-detail-overlay {
  background:
    linear-gradient(90deg, rgba(6, 18, 36, 0.98), rgba(7, 24, 47, 0.72) 60%, rgba(7, 24, 47, 0.38)),
    linear-gradient(180deg, rgba(6, 18, 36, 0.12), rgba(6, 18, 36, 0.92));
}

.project-detail-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  padding-bottom: 76px;
}

.project-detail-hero .eyebrow {
  margin-top: 34px;
  color: var(--cyan-300);
}

.project-detail-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.project-detail-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.back-link {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.back-link:hover {
  color: #ffffff;
}

.project-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 64px;
  align-items: start;
}

.project-overview-copy > p:not(.eyebrow) {
  color: var(--ink-700);
  font-size: 1.06rem;
}

.project-content-note {
  padding: 16px 18px;
  margin-top: 28px;
  background: var(--surface-soft);
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem !important;
}

.project-facts {
  padding: 28px;
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-facts h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1.35rem;
}

.project-facts dl {
  display: grid;
  grid-template-columns: minmax(100px, 0.7fr) minmax(0, 1fr);
  margin: 0;
}

.project-facts dt,
.project-facts dd {
  padding: 12px 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.project-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-facts dd {
  color: #ffffff;
  font-weight: 700;
}

.project-scope-section {
  background: var(--surface-soft);
}

.project-scope-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 64px;
}

.project-scope-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-scope-list li {
  position: relative;
  padding: 20px 22px 20px 56px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(12, 23, 40, 0.05);
}

.project-scope-list li::before {
  position: absolute;
  top: 50%;
  left: 20px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: var(--blue-600);
  border-radius: 50%;
  content: "\2713";
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateY(-50%);
}

.project-gallery-section {
  background: #ffffff;
}

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

.project-gallery figure {
  overflow: hidden;
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-gallery figcaption {
  padding: 14px 16px;
  color: var(--ink-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.project-detail-cta {
  padding: 68px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #061224, #0b2444);
}

.project-detail-cta .eyebrow {
  color: var(--cyan-300);
}

.project-detail-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.project-detail-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.contact-section {
  padding: 96px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 18, 36, 0.98), rgba(12, 36, 68, 0.96)),
    var(--navy-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: start;
}

.contact-grid p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  margin: 0;
  font-style: normal;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.contact-card strong {
  font-size: 1.1rem;
}

.contact-card span,
.contact-card a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #030b16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
}

.footer-brand img {
  width: 28px;
  height: 46px;
  object-fit: contain;
}

.footer-brand span {
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .site-nav a {
    padding: 9px 7px;
    font-size: 0.82rem;
  }

  .network-card,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .network-stats {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    overflow-x: auto;
  }

  .value-grid,
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 2px;
    padding: 12px;
    background: rgba(6, 18, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 70px 0 82px;
  }

  .hero-panel {
    display: none;
  }

  .section,
  .contact-section {
    padding: 76px 0;
  }

  .network-card {
    margin-top: -42px;
    padding: 22px;
  }

  .services-grid,
  .value-grid,
  .project-grid,
  .project-overview-grid,
  .project-scope-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .team-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-heading,
  .carousel-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-heading .button {
    width: fit-content;
  }

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

}

@media (max-width: 640px) {
  .brand strong {
    max-width: 190px;
    white-space: normal;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.38rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .network-stats,
  .services-grid,
  .value-grid,
  .project-grid,
  .partner-grid,
  .team-grid,
  .certificate-grid,
  .project-overview-grid,
  .project-scope-grid,
  .project-gallery,
  .project-detail-cta-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .network-stats {
    overflow: hidden;
  }

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

  .stat-item:last-child {
    border-bottom: 0;
  }

  .service-card,
  .value-card {
    min-height: 0;
  }

  .overview-media figcaption {
    position: relative;
    border-width: 1px 0 0;
    border-radius: 0;
  }

  .carousel-controls {
    justify-content: flex-start;
  }

  .client-logo {
    flex-basis: 140px;
    height: 88px;
  }

  .client-logo img {
    max-width: 108px;
  }

  .partner-logo {
    min-height: 100px;
  }

  .project-detail-hero {
    min-height: 460px;
  }

  .project-detail-hero-content {
    padding-top: 74px;
    padding-bottom: 58px;
  }

  .project-detail-hero h1 {
    font-size: 2.45rem;
  }

  .project-facts {
    padding: 22px;
  }

  .project-detail-cta .button {
    margin-top: 8px;
  }
}

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

  .hero-media img {
    animation: none !important;
    transform: none !important;
  }

  .button:hover,
  .value-card:hover,
  .service-card:hover,
  .service-card:focus-within,
  .project-card:hover,
  .project-card:focus-visible,
  .partner-logo:hover,
  .team-card:hover,
  .client-logo:hover,
  .client-logo:focus-within,
  .certificate-card:hover,
  .certificate-card:focus-within,
  .carousel-button:hover,
  .carousel-button:focus-visible,
  .carousel-button:active,
  .project-card:hover img,
  .project-card:focus-visible img {
    transform: none !important;
  }

  .value-card:hover .icon-badge,
  .service-card:hover .icon-badge,
  .service-card:focus-within .icon-badge,
  .value-card:hover .value-icon,
  .service-card:hover .service-icon,
  .service-card:focus-within .service-icon {
    transform: none !important;
  }

  .team-card:hover .team-photo-placeholder img {
    transform: none !important;
  }

  .motion-ready .section-reveal,
  .motion-ready .card-reveal {
    opacity: 1;
    translate: none;
  }
}
