:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-muted: #eef3f8;
  --ink: #132238;
  --muted: #607086;
  --line: #d9e2ee;
  --primary: #124a8f;
  --primary-dark: #0a2d58;
  --cyan: #12a6b7;
  --green: #1b8f62;
  --amber: #d98216;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(19, 34, 56, 0.12);
  --shadow-soft: 0 10px 28px rgba(19, 34, 56, 0.08);
  --radius: 8px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Sora", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #fff;
  background: var(--primary);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.section {
  padding: clamp(64px, 8vw, 112px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 880px;
}

.section-tight {
  padding: clamp(44px, 6vw, 72px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.section-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-ink {
  background:
    linear-gradient(135deg, rgba(18, 74, 143, 0.92), rgba(10, 45, 88, 0.96)),
    url("../img/optimized/section-network-blue.webp") center / cover;
  color: #fff;
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-ink .eyebrow,
.hero .eyebrow {
  color: #92f1ff;
}

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

h1,
h2,
h3 {
  font-family: "Outfit", "Sora", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  max-width: 860px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.section-ink p,
.hero p {
  color: rgba(255, 255, 255, 0.84);
}

.lead {
  max-width: 720px;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 226, 238, 0.85);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(19, 34, 56, 0.08);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
}

.site-nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.brand-image {
  width: 118px;
  height: 64px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(18, 74, 143, 0.08);
}

.nav-links a.nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--primary);
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta.active {
  color: #fff;
  background: var(--primary-dark);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(18, 74, 143, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
}

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

.hero {
  min-height: calc(100vh - 76px);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  min-height: calc(100vh - 76px);
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transition: opacity 0.75s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 31, 57, 0.26), transparent 58%);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  animation: heroImageDrift 8s ease both;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 12vw, 140px) 0;
}

.hero-content p {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.section-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 24, 42, 0.28);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.slider-dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.slider-dot.active {
  width: 54px;
  background: #fff;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 45, 88, 0.92), rgba(18, 74, 143, 0.78)),
    url("../img/optimized/page-hero.webp") center / cover;
}

.page-hero .container {
  padding-block: clamp(28px, 3vw, 42px);
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 780px;
}

.page-hero .lead {
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
}

.page-hero .hero-actions {
  margin-top: 20px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: none;
}

.grid-2,
.grid-3,
.grid-4,
.split-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.split-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.2fr;
  align-items: start;
  gap: clamp(28px, 5vw, 58px);
}

.card,
.metric-card,
.service-card,
.industry-card,
.process-step,
.timeline-step,
.value-card,
.team-card,
.faq-item,
.contact-method,
.info-panel,
.trust-badge,
.partner-card,
.message-card,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card,
.service-card,
.industry-card,
.process-step,
.timeline-step,
.value-card,
.team-card,
.contact-method,
.info-panel,
.partner-card,
.message-card {
  padding: clamp(22px, 3vw, 32px);
}

.card,
.service-card,
.industry-card,
.process-step,
.timeline-step,
.value-card,
.team-card,
.contact-method,
.partner-card,
.trust-badge,
.gallery-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.service-card:hover,
.industry-card:hover,
.process-step:hover,
.timeline-step:hover,
.value-card:hover,
.team-card:hover,
.contact-method:hover,
.partner-card:hover,
.trust-badge:hover,
.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 74, 143, 0.28);
  box-shadow: var(--shadow);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.metric-card {
  padding: 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.metric-number {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.metric-card p {
  margin-bottom: 0;
  font-weight: 700;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-weight: 900;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.service-card p,
.industry-card p,
.value-card p,
.team-card p,
.process-step p,
.timeline-step p {
  margin-bottom: 0;
}

.team-card .card-image {
  height: 200px;
  object-position: center top;
}

.profile-role {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card .card-actions {
  margin-top: auto;
  padding-top: 24px;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  margin-bottom: 26px;
}

.services-intro-grid .section-header {
  margin-bottom: 0;
}

.service-finder {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-finder strong {
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-finder a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--primary);
  background: var(--surface-muted);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--ease);
}

.service-finder a:hover {
  border-color: rgba(18, 74, 143, 0.3);
  background: #fff;
  transform: translateX(3px);
}

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

.service-category {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  border: 1px solid rgba(18, 74, 143, 0.16);
  border-radius: var(--radius);
  color: var(--primary);
  background: rgba(18, 74, 143, 0.06);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card .service-category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin-bottom: 0;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(10, 45, 88, 0.84);
  backdrop-filter: blur(8px);
}

.service-card .icon-box {
  margin-top: 4px;
}

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

.service-detail-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-detail-card h3,
.service-detail-card p {
  margin-bottom: 0;
}

.service-detail-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

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

.service-detail-columns div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.service-detail-columns strong,
.service-detail-columns span {
  display: block;
}

.service-detail-columns strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.9rem;
}

.service-detail-columns span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.card-image {
  width: calc(100% + clamp(44px, 6vw, 64px));
  max-width: none;
  height: 210px;
  margin: calc(clamp(22px, 3vw, 32px) * -1) calc(clamp(22px, 3vw, 32px) * -1) 22px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card-logo {
  width: auto;
  max-width: 160px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.text-link,
.service-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.service-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.feature-list,
.check-list,
.contact-list,
.newsletter-benefits {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.newsletter-benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before,
.check-list li::before,
.newsletter-benefits li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--cyan);
  transform: rotate(45deg);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.principles-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(238, 243, 248, 0.9)),
    url("../img/live/uploads/2021/08/info-box-bg-image.png") center / cover;
}

.principles-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  margin-bottom: 18px;
}

.principles-copy {
  display: grid;
  align-content: center;
}

.principles-copy h2 {
  margin-bottom: 16px;
}

.principle-main,
.principle-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 238, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.principle-main {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 45, 88, 0.94), rgba(18, 74, 143, 0.74)),
    url("../img/optimized/hero-network.webp") center / cover;
  box-shadow: var(--shadow);
}

.principle-main h3 {
  max-width: 760px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.principle-main p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.principle-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principle-main .principle-label,
.principle-card-dark .principle-label {
  color: #92f1ff;
}

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

.principle-card {
  display: grid;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.principle-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(18, 166, 183, 0.1);
  border-radius: 999px;
}

.principle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 74, 143, 0.28);
  box-shadow: var(--shadow);
}

.principle-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.principle-card p {
  margin-bottom: 0;
}

.principle-card-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), #0b1728);
}

.principle-card-dark h3 {
  color: #fff;
}

.principle-card-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.principle-card-accent {
  border-color: rgba(27, 143, 98, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 249, 244, 0.96));
}

.principle-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.principle-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 900;
  text-align: center;
}

.about-modern-section {
  background:
    linear-gradient(135deg, rgba(245, 247, 251, 0.96), rgba(238, 243, 248, 0.98)),
    url("../img/live/uploads/2020/02/Home_ourwork_elements.svg") center / 520px no-repeat;
}

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

.about-feature-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.about-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
}

.about-feature-card p {
  margin-bottom: 0;
}

.delivery-promise-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 45, 88, 0.96), rgba(12, 28, 48, 0.97)),
    url("../img/optimized/section-network-blue.webp") center / cover;
}

.delivery-promise-section .eyebrow,
.delivery-promise-card .profile-role {
  color: #92f1ff;
}

.delivery-promise-section p {
  color: rgba(255, 255, 255, 0.78);
}

.delivery-promise-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: end;
  margin-bottom: 34px;
}

.delivery-promise-header h2,
.delivery-promise-header p {
  margin-bottom: 0;
}

.delivery-promise-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.delivery-promise-card {
  display: grid;
  align-content: center;
  min-height: 380px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.delivery-promise-card h3 {
  max-width: 760px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.delivery-promise-card p {
  max-width: 700px;
  margin-bottom: 0;
}

.delivery-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.delivery-focus-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}

.delivery-proof {
  display: grid;
  gap: 12px;
}

.delivery-proof div {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.delivery-proof strong {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.delivery-proof span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.45;
}

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

.delivery-commitment-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.delivery-commitment-card .icon-box {
  margin-bottom: 22px;
  color: var(--ink);
  background: #92f1ff;
}

.delivery-commitment-card h3 {
  color: #fff;
}

.delivery-commitment-card p {
  margin-bottom: 0;
}

.leadership-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 45, 88, 0.96), rgba(12, 28, 48, 0.97)),
    url("../img/optimized/section-network-blue.webp") center / cover;
}

.leadership-section .eyebrow {
  color: #92f1ff;
}

.leadership-section p {
  color: rgba(255, 255, 255, 0.78);
}

.leadership-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: end;
  margin-bottom: 34px;
}

.leadership-header h2,
.leadership-header p {
  margin-bottom: 0;
}

.leadership-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.leader-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.leader-feature-image {
  min-height: 380px;
  background: rgba(255, 255, 255, 0.08);
}

.leader-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.leader-feature-copy .profile-role {
  color: #92f1ff;
}

.leader-feature-copy h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.leader-feature-copy p {
  max-width: 620px;
}

.leader-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.leader-focus-list span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 900;
}

.leadership-proof {
  display: grid;
  gap: 12px;
}

.leadership-proof div {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.leadership-proof strong {
  display: block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.leadership-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.45;
}

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

.leader-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.leader-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-bottom: 4px solid var(--cyan);
}

.leader-card-body {
  padding: 20px;
}

.leader-card-body h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.leader-card-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.zkteco-section .eyebrow {
  color: var(--green);
}

.zkteco-showcase {
  display: grid;
  gap: 14px;
}

.zkteco-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  color: var(--ink);
  font-weight: 900;
}

.zkteco-brand-row img {
  width: 134px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.zkteco-brand-row span {
  color: var(--green);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zkteco-image-frame {
  overflow: hidden;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.zkteco-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
}

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

.zkteco-feature {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.zkteco-feature strong,
.zkteco-feature span {
  display: block;
}

.zkteco-feature strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.96rem;
}

.zkteco-feature span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.service-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}

.service-tab:hover,
.service-tab.active {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.service-card[hidden] {
  display: none;
}

.process-step {
  position: relative;
}

.process-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 20px;
  width: 2px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  margin-left: 54px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -42px;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 1px var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  box-shadow: none;
}

.faq-button,
.accordion-button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  color: var(--ink);
  background: #fff;
  text-align: left;
  font-weight: 900;
}

.faq-icon,
.accordion-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
  line-height: 1;
}

.faq-panel,
.accordion-panel {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-panel,
.accordion-item.open .accordion-panel {
  display: block;
  animation: slideDown 0.25s ease both;
}

.contact-method {
  display: grid;
  gap: 10px;
}

.contact-options-section {
  background:
    linear-gradient(135deg, rgba(245, 247, 251, 0.96), rgba(255, 255, 255, 0.96)),
    url("../img/live/uploads/2020/02/Home_ourwork_elements.svg") center / 520px no-repeat;
}

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

.contact-method {
  position: relative;
  overflow: hidden;
}

.contact-method::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 92px;
  height: 92px;
  border: 16px solid rgba(18, 166, 183, 0.1);
  border-radius: 999px;
}

.contact-method-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 45, 88, 0.96), rgba(18, 74, 143, 0.88)),
    url("../img/optimized/section-network-blue.webp") center / cover;
}

.contact-method-primary h3,
.contact-method-primary a {
  color: #fff;
}

.contact-method-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-method-primary .card-logo {
  filter: brightness(0) invert(1);
}

.contact-method h3 {
  margin-bottom: 0;
}

.contact-method a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-method-primary a,
.contact-method-primary a:hover {
  color: #fff;
}

.contact-intake-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-intake-copy h2,
.contact-intake-copy .lead {
  margin-bottom: 0;
}

.contact-routing-panel,
.contact-support-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-routing-panel h3 {
  margin-bottom: 18px;
}

.contact-step-list {
  display: grid;
  gap: 12px;
}

.contact-step-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.contact-step-list strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-family: "Outfit", sans-serif;
}

.contact-step-list span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.contact-support-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 248, 0.98));
}

.contact-support-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-form,
.newsletter-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--primary), var(--green));
}

.form-heading {
  display: grid;
  gap: 4px;
}

.form-heading h3 {
  margin-bottom: 0;
}

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

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

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(18, 74, 143, 0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(217, 130, 22, 0.14);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.alert-error {
  color: var(--danger);
  background: #fff0ee;
  border: 1px solid #ffd4cf;
}

.contact-error {
  display: none;
}

.contact-error.visible {
  display: block;
}

.map-panel {
  min-height: 310px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 74, 143, 0.08), rgba(18, 166, 183, 0.1)),
    repeating-linear-gradient(45deg, rgba(18, 74, 143, 0.08) 0 1px, transparent 1px 18px);
  color: var(--ink);
  text-align: center;
}

.map-panel iframe {
  width: 100%;
  min-height: 310px;
  border: 0;
}

.map-panel p {
  margin-bottom: 0;
}

.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.partner-logo {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  font-weight: 900;
}

.partner-logo img {
  width: auto;
  max-width: 132px;
  max-height: 36px;
  object-fit: contain;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.image-mosaic img:first-child {
  grid-row: span 2;
}

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

.trust-badge {
  padding: 18px;
  text-align: center;
}

.trust-badge strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.trust-badge span {
  color: var(--muted);
  font-size: 0.82rem;
}

.gallery-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 130, 22, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(7, 20, 37, 0.94), rgba(18, 74, 143, 0.76)),
    url("../img/optimized/portfolio-deploy.webp") center / cover;
}

.gallery-showcase {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(54px, 7vw, 92px);
  background:
    radial-gradient(circle at 10% 20%, rgba(18, 166, 183, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f3eb 0%, #fff 52%, #eef3f8 100%);
}

.gallery-showcase > * {
  position: relative;
  z-index: 1;
}

.gallery-showcase-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.gallery-showcase-header p {
  margin-bottom: 0;
}

.gallery-marquee {
  width: 100%;
  overflow: hidden;
  padding-block: 10px 30px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.gallery-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 2vw, 30px);
  animation: galleryWallScroll var(--gallery-duration, 40s) linear infinite;
}

.gallery-marquee-reverse {
  padding-block: 0 8px;
  opacity: 0.72;
}

.gallery-marquee-reverse .gallery-marquee-track {
  animation-name: galleryWallScrollReverse;
  animation-duration: var(--gallery-duration, 48s);
}

.gallery-marquee:hover .gallery-marquee-track {
  animation-play-state: paused;
}

.gallery-frame {
  flex: 0 0 clamp(240px, 28vw, 390px);
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(118, 92, 55, 0.2);
  border-radius: 4px;
  background:
    linear-gradient(135deg, #fffdf8, #eee6d7);
  box-shadow:
    0 22px 55px rgba(19, 34, 56, 0.18),
    inset 0 0 0 8px rgba(255, 255, 255, 0.45);
}

.gallery-frame-small {
  flex-basis: clamp(180px, 20vw, 300px);
  transform: translateX(-8vw);
}

.gallery-frame-button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #0b1728;
  color: inherit;
  text-align: left;
}

.gallery-frame-button img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 0.45s var(--ease), filter 0.45s ease;
}

.gallery-frame-small img {
  aspect-ratio: 5 / 4;
}

.gallery-frame:hover img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.045);
}

.gallery-frame-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, rgba(10, 45, 88, 0.86), rgba(5, 18, 33, 0.72));
  backdrop-filter: blur(12px);
}

.gallery-frame-caption span {
  color: #92f1ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-frame-caption strong {
  overflow: hidden;
  font-family: "Outfit", "Sora", system-ui, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .gallery-marquee-track {
    animation: none;
  }

  .gallery-marquee {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: thin;
  }
}

.gallery-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.gallery-stats div {
  display: grid;
  gap: 4px;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
}

.gallery-stats strong {
  color: var(--primary);
  font-family: "Outfit", "Sora", system-ui, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1;
}

.gallery-stats span {
  color: var(--muted);
  font-weight: 800;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-filter-button {
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease);
}

.gallery-filter-button:hover,
.gallery-filter-button.active {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-2px);
}

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

.gallery-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-image-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.gallery-image-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s var(--ease), filter 0.35s ease;
}

.gallery-card:hover .gallery-image-button img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.gallery-card-body {
  padding: 18px;
}

.gallery-card-body span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-card-body h3 {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

code {
  padding: 0.12rem 0.35rem;
  border-radius: 6px;
  color: var(--primary-dark);
  background: rgba(18, 74, 143, 0.08);
  font-size: 0.92em;
  font-weight: 700;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 54px);
  background: rgba(5, 18, 33, 0.88);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  max-height: min(76vh, 820px);
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox p {
  margin: 16px 0 0;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.gallery-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 74, 143, 0.95), rgba(18, 166, 183, 0.86)),
    url("../img/optimized/cta-cctv.webp") center / cover;
  box-shadow: var(--shadow);
}

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

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  padding: clamp(28px, 5vw, 48px) 0 28px;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(135deg, rgba(11, 23, 40, 0.98), rgba(10, 45, 88, 0.96)),
    url("../img/optimized/section-network-blue.webp") center / cover;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.footer-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #92f1ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.footer-cta-button {
  white-space: nowrap;
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 0.75fr));
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(38px, 6vw, 62px) 0 28px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand a {
  width: fit-content;
}

.footer-logo {
  width: 154px;
  height: auto;
  object-fit: contain;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  text-decoration: none;
  transition: transform 0.2s var(--ease), background-color 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(146, 241, 255, 0.55);
  background: rgba(18, 166, 183, 0.22);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h4 {
  position: relative;
  margin: 0 0 10px;
  padding-bottom: 12px;
  color: #fff;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a {
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s var(--ease);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 2px;
  padding: 0 12px;
  border: 1px solid rgba(146, 241, 255, 0.34);
  border-radius: var(--radius);
  color: #fff !important;
  background: rgba(18, 166, 183, 0.16);
  font-weight: 800;
}

.site-footnote {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 78px;
  z-index: 32;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 36px rgba(11, 23, 40, 0.22);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  background: #1ebe5d;
  box-shadow: 0 20px 42px rgba(11, 23, 40, 0.28);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroImageDrift {
  from {
    background-position-y: 52%;
  }

  to {
    background-position-y: 50%;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .grid-3,
  .grid-4,
  .metric-grid,
  .service-catalog-grid,
  .principle-grid,
  .principle-strip,
  .about-feature-grid,
  .contact-method-grid,
  .leadership-grid,
  .delivery-commitment-grid,
  .trust-grid,
  .gallery-grid,
  .gallery-stats,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2,
  .split-grid,
  .contact-grid,
  .services-intro-grid,
  .principles-layout,
  .leadership-header,
  .leadership-spotlight,
  .delivery-promise-header,
  .delivery-promise-spotlight,
  .gallery-showcase-header,
  .cta-panel,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .service-finder {
    position: static;
  }

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

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

  .cta-panel .section-actions {
    margin-top: 0;
  }

  .footer-cta-button {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 52px 0;
  }

  .section-tight {
    padding: 38px 0;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .lead {
    font-size: 1rem;
  }

  .site-nav {
    min-height: 82px;
  }

  .brand-image {
    width: 104px;
    height: 58px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 82px 14px auto;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links a.nav-cta {
    margin: 0;
    justify-content: center;
  }

  .hero,
  .hero-slider {
    min-height: max(620px, calc(100svh - 82px));
  }

  .hero-content {
    padding-block: 72px 104px;
  }

  .hero-content p,
  .page-hero .lead {
    max-width: 100%;
  }

  .page-hero .container {
    padding-block: 34px;
  }

  .hero-actions,
  .section-actions,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .service-tab {
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .form-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .service-catalog-grid,
  .service-detail-grid,
  .service-detail-columns,
  .principle-grid,
  .principle-strip,
  .about-feature-grid,
  .contact-method-grid,
  .leadership-grid,
  .leadership-proof,
  .delivery-commitment-grid,
  .delivery-proof,
  .trust-grid,
  .gallery-grid,
  .gallery-stats,
  .zkteco-feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .principle-main {
    min-height: 320px;
  }

  .leader-feature-card {
    grid-template-columns: 1fr;
  }

  .delivery-promise-card {
    min-height: auto;
  }

  .leader-feature-image {
    min-height: 330px;
  }

  .leader-card img {
    height: 300px;
  }

  .site-footnote {
    flex-direction: column;
  }

  .footer-cta,
  .footer-brand,
  .footer-links {
    text-align: left;
  }

  .footer-cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-nav {
    min-height: 76px;
  }

  .brand-image {
    width: 96px;
    height: 52px;
  }

  .nav-links {
    inset: 76px 12px auto;
  }

  .hero,
  .hero-slider {
    min-height: max(590px, calc(100svh - 76px));
  }

  .hero-content {
    padding-block: 56px 96px;
  }

  .hero-badge-row {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-badge,
  .leader-focus-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .slider-controls {
    bottom: 18px;
  }

  .card,
  .service-card,
  .industry-card,
  .process-step,
  .timeline-step,
  .value-card,
  .team-card,
  .contact-method,
  .info-panel,
  .partner-card,
  .message-card,
  .contact-form,
  .newsletter-form {
    padding: 20px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .card-image {
    width: calc(100% + 40px);
    height: 190px;
    margin: -20px -20px 18px;
  }

  .metric-card {
    padding: 22px;
  }

  .contact-step-list div {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .contact-step-list strong {
    width: 34px;
    height: 34px;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 260px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 62px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }

  .footer-grid {
    padding-top: 34px;
  }

  .footer-socials {
    display: grid;
    grid-template-columns: repeat(2, 42px);
  }
}
