:root {
  --accent: #2A6BFF;
  --bg: #0E131B;
  --dark: #070A10;
  --text: #ffffff;
  --muted: rgba(255,255,255,.7);
  --line: rgba(255,255,255,.1);
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.09);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(9,12,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-box,
.logo-img {
  width: 120px;
  height: 54px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  transition: .25s ease;
}

.desktop-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  display: block;
}

.mobile-nav {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 18px;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  font-weight: 700;
}

.mobile-nav.open {
  display: flex;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  display: block;
  background: #0A0E16;
}

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

.hero-overlay-dark {
  background: linear-gradient(90deg, rgba(7,10,16,.86), rgba(7,10,16,.62), rgba(7,10,16,.42));
}

.hero-overlay-gradient {
  background: linear-gradient(180deg, rgba(7,10,16,.18), rgba(7,10,16,.74));
}

.hero-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(42,107,255,.38);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.small-cta,
.footer-top a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(42,107,255,.28);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: end;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .96;
  letter-spacing: -2.8px;
  font-weight: 900;
  text-shadow: 0 12px 34px rgba(0,0,0,.28);
}

.hero-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255,255,255,.82);
}

.button-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 32px rgba(42,107,255,.28);
}

.btn-secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.glass-panel {
  max-width: 420px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
}

.panel-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 800;
}

.glass-panel h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.glass-panel p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.stat-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  transition: .25s ease;
}

.stat-card:hover,
.lift-card:hover {
  transform: translateY(-6px);
}

.stat-card strong {
  display: block;
  font-size: 18px;
}

.stat-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  line-height: 1.5;
}

.hero-flow {
  margin-top: 36px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-flow article {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.hero-flow span,
.capability-card strong {
  color: var(--accent);
  font-weight: 900;
}

.hero-flow h3,
.hero-flow p {
  margin: 8px 0 0;
}

.hero-flow p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 13px;
}

/* =========================
   BANNER
========================= */

.banner-section {
  padding: 80px 0 20px;
}

.banner-card {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.banner-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,11,18,.86), rgba(8,11,18,.25));
}

.banner-content {
  position: absolute;
  inset: 0 auto 0 0;
  max-width: 760px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
}

.banner-content h2,
.feature-copy h2,
.bridge-intro h2,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}

/* =========================
   ABOUT
========================= */

.about {
  padding: 90px 0 30px;
}

.feature-row {
  display: flex;
  gap: 42px;
  align-items: center;
  margin-bottom: 46px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 0 0 360px;
  width: 360px;
  height: 240px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
  transition: .25s ease;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-copy {
  flex: 1 1 420px;
  padding: 24px 6px;
}

.feature-copy p,
.bridge-intro p,
.contact-card p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
}

/* =========================
   CAPABILITY OVERVIEW
========================= */

.capability-bridge {
  padding: 20px 0 90px;
}

.bridge-card,
.contact-card {
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 56px rgba(0,0,0,.22);
}

.bridge-intro {
  max-width: 850px;
  margin-bottom: 26px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  perspective: 1400px;
}

.capability-card,
.service-card,
.facility-grid article {
  position: relative;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  transition: .35s cubic-bezier(.22,1,.36,1);
}

.capability-card {
  min-height: 390px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform-origin: center;
}

.card-image {
  position: relative;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.1);
  transition:
    height 520ms cubic-bezier(.22, 1, .36, 1),
    transform 520ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 520ms cubic-bezier(.22, 1, .36, 1),
    border-color 520ms cubic-bezier(.22, 1, .36, 1);
}

.card-image img,
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .45s ease;
}

.card-image:after,
.service-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.58));
}

.card-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.46);
  font-size: 11px;
  font-weight: 800;
}

.capability-card h3 {
  margin: 14px 0 10px;
  font-size: 20px;
}

.capability-card p,
.service-card p,
.facility-grid p {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: 14px;
}

.capability-card p {
  max-height: 92px;
  overflow: hidden;
  transition:
    max-height 520ms cubic-bezier(.22, 1, .36, 1),
    color 350ms ease;
}

.capability-card:hover {
  min-height: 510px;
  z-index: 10;
  transform: translateY(-16px) scale(1.045) rotateX(4deg);
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.04));
  border-color: rgba(42,107,255,.62);
  box-shadow:
    0 38px 80px rgba(0,0,0,.42),
    0 0 42px rgba(42,107,255,.22);
}

.capability-card:hover .card-image {
  height: 260px;
  transform: translateY(-4px);
  border-color: rgba(42,107,255,.58);
  box-shadow:
    0 24px 44px rgba(0,0,0,.34),
    0 0 28px rgba(42,107,255,.22);
}

.capability-card:hover .card-image img {
  transform: scale(1.08);
}

.capability-card:hover p {
  max-height: 260px;
  color: rgba(255,255,255,.82);
}

.capability-card:hover .card-image span {
  background: rgba(255,255,255,.92);
  color: #10151F;
}

/* =========================
   SERVICES 3D
   Stable Hover Premium 3D Version
========================= */

.services {
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 30px;
  max-width: 860px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  perspective: 1600px;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 16px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 0%, rgba(42,107,255,.12), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 260ms cubic-bezier(.22, 1, .36, 1),
    border-color 260ms ease,
    background 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(42,107,255,.28), transparent 60%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.16),
      transparent 34%,
      transparent 68%,
      rgba(42,107,255,.13)
    );
  opacity: .14;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover {
  transform:
    rotateX(4deg)
    rotateY(-3deg)
    scale(1.022);
  border-color: rgba(42,107,255,.46);
  background:
    radial-gradient(circle at 50% 0%, rgba(42,107,255,.18), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow:
    0 30px 64px rgba(0,0,0,.36),
    0 0 24px rgba(42,107,255,.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-image {
  height: 155px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px;
  z-index: 2;
  transform: translateZ(18px);
  backface-visibility: hidden;
  will-change: transform;
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 260ms cubic-bezier(.22, 1, .36, 1),
    border-color 260ms ease;
}

.service-card:hover .service-image {
  transform: translateZ(34px);
  border-color: rgba(42,107,255,.48);
  box-shadow:
    0 18px 34px rgba(0,0,0,.3),
    0 0 16px rgba(42,107,255,.12);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03) brightness(.92) saturate(.92);
  transform: scale(1.01);
  backface-visibility: hidden;
  will-change: transform;
  transition:
    transform 320ms cubic-bezier(.22, 1, .36, 1),
    filter 320ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.065);
  filter: contrast(1.06) brightness(.96) saturate(1.04);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.58));
  pointer-events: none;
}

.service-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(42,107,255,.28);
  transform: translateZ(30px);
  backface-visibility: hidden;
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 260ms ease,
    background 260ms ease;
}

.service-card:hover .service-image span {
  transform: translateZ(44px) scale(1.035);
  box-shadow:
    0 18px 34px rgba(42,107,255,.36),
    0 0 18px rgba(42,107,255,.28);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  transform: translateZ(20px);
  backface-visibility: hidden;
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    color 260ms ease;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: 14px;
  transform: translateZ(14px);
  backface-visibility: hidden;
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    color 260ms ease;
}

.service-card:hover h3 {
  transform: translateZ(30px);
  color: #ffffff;
}

.service-card:hover p {
  transform: translateZ(24px);
  color: rgba(255,255,255,.82);
}

.service-card i,
.facility-grid i {
  display: block;
  width: 38%;
  height: 4px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(42,107,255,.4);
  margin-top: 18px;
  transition: .28s ease;
}

.service-card i {
  position: relative;
  z-index: 2;
  transform: translateZ(18px);
  transition:
    width 260ms ease,
    box-shadow 260ms ease;
}

.service-card:hover i {
  width: 78%;
  box-shadow:
    0 0 20px rgba(42,107,255,.52),
    0 0 30px rgba(42,107,255,.2);
}

.service-card.slide-card.in-view:hover {
  transform:
    rotateX(4deg)
    rotateY(-3deg)
    scale(1.022);
}

/* =========================
   FACILITIES
========================= */

.facilities {
  padding: 90px 0;
  background: linear-gradient(180deg, #0A0E16, #06080D);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.facility-grid article {
  padding: 26px;
  border-radius: 28px;
}

.facility-grid article:hover {
  transform: translateY(-8px);
}

.facility-grid i {
  width: 72px;
  margin: 0 0 18px;
}

.facility-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

/* =========================
   CONTACT
========================= */

.contact {
  padding: 90px 0;
}

.contact-card {
  display: grid;
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 32px rgba(0,0,0,.14);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,.5);
}

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

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

button[type="submit"] {
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(42,107,255,.28);
}

.form-success {
  display: none;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.form-success.show {
  display: block;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 60px 0 26px;
  background: #05070B;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-top {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(42,107,255,.24), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-top span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 900;
}

.footer-top h2 {
  margin: 8px 0 0;
  font-size: 28px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr 1.2fr;
  gap: 26px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: 14px;
  text-decoration: none;
  margin: 0 0 8px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.52);
  font-size: 13px;
}

/* =========================
   SECTION REVEAL
========================= */

.section-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: .8s cubic-bezier(.22,1,.36,1);
}

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

/* =========================
   SIDE SLIDE ANIMATION
========================= */

.slide-card {
  opacity: 0;
  filter: blur(8px);
  will-change: transform, opacity, filter;
  transition:
    opacity 850ms cubic-bezier(.22, 1, .36, 1),
    transform 850ms cubic-bezier(.22, 1, .36, 1),
    filter 850ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 350ms ease,
    border-color 350ms ease,
    background 350ms ease;
}

.slide-card.from-left:not(.in-view) {
  transform: translateX(-150px) translateY(35px) scale(0.94);
}

.slide-card.from-right:not(.in-view) {
  transform: translateX(150px) translateY(35px) scale(0.94);
}

.slide-card.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) scale(1);
}

.hero-flow article:nth-child(1),
.capability-card:nth-child(1),
.service-card:nth-child(1),
.facility-grid article:nth-child(1) {
  transition-delay: 80ms;
}

.hero-flow article:nth-child(2),
.capability-card:nth-child(2),
.service-card:nth-child(2),
.facility-grid article:nth-child(2) {
  transition-delay: 180ms;
}

.hero-flow article:nth-child(3),
.capability-card:nth-child(3),
.service-card:nth-child(3),
.facility-grid article:nth-child(3) {
  transition-delay: 280ms;
}

.service-card:nth-child(4),
.facility-grid article:nth-child(4) {
  transition-delay: 380ms;
}

.capability-card.slide-card.in-view:hover {
  min-height: 510px;
  transform: translateY(-16px) scale(1.045) rotateX(4deg);
}

.service-card.slide-card.in-view:hover {
  transform:
    rotateX(4deg)
    rotateY(-3deg)
    scale(1.022);
}

.facility-grid article.slide-card.in-view:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 50px rgba(0,0,0,.28),
    0 0 28px rgba(42,107,255,.12);
}

.feature-image.slide-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}

.feature-copy.slide-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-side {
    align-items: stretch;
  }

  .glass-panel,
  .stats-grid {
    max-width: none;
  }

  .capability-grid,
  .hero-flow {
    grid-template-columns: 1fr;
  }

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

  .feature-image {
    width: 100%;
    flex-basis: auto;
  }

  .capability-card,
  .capability-card:hover {
    min-height: auto;
  }

  .capability-card .card-image {
    height: 190px;
  }

  .capability-card:hover .card-image {
    height: 240px;
  }

  .capability-card p {
    max-height: none;
  }

  .service-card,
  .service-card:hover,
  .service-card.slide-card.in-view:hover {
    transform: scale(1.012);
  }

  .service-card:hover .service-image {
    transform: translateZ(20px);
  }
}

@media (max-width: 768px) {
  .slide-card.from-left:not(.in-view) {
    transform: translateX(-55px) translateY(28px) scale(0.96);
  }

  .slide-card.from-right:not(.in-view) {
    transform: translateX(55px) translateY(28px) scale(0.96);
  }
}

@media (max-width: 680px) {
  .hero-content {
    padding-top: 120px;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -1.1px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .button-row,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .small-cta {
    display: none;
  }

  .service-grid,
  .facility-grid,
  .footer-grid,
  .form-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .banner-content {
    padding: 24px;
  }

  .bridge-card,
  .contact-card {
    padding: 22px;
  }

  .capability-card .card-image,
  .capability-card:hover .card-image {
    height: 220px;
  }

  .capability-card:hover,
  .capability-card.slide-card.in-view:hover {
    transform: translateY(-8px) scale(1.015);
  }

  .service-card,
  .service-card:hover,
  .service-card.slide-card.in-view:hover {
    transform: scale(1.01);
    overflow: hidden;
  }

  .service-card::before {
    display: none;
  }

  .service-card::after {
    opacity: .12;
  }
}

/* =========================================================
   SCAS ABOUT PAGE — HIGH VALUE CORPORATE VERSION
========================================================= */

.about-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #070A10;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  display: block;
  filter: grayscale(.16) saturate(.82) contrast(1.08) brightness(.68);
  transform: scale(1.03);
}

.about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,14,.97), rgba(5,8,14,.84), rgba(5,8,14,.56)),
    linear-gradient(180deg, rgba(5,8,14,.18), rgba(5,8,14,.94));
}

.about-line-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 78%);
  opacity: .26;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 90px;
}

.corporate-label {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.065);
  border-left: 3px solid var(--accent);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 900;
  backdrop-filter: blur(14px);
  margin-bottom: 26px;
}

.about-hero h1 {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .98;
  letter-spacing: -2.9px;
  font-weight: 900;
  text-shadow: 0 18px 44px rgba(0,0,0,.4);
}

.about-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.82;
  color: rgba(255,255,255,.76);
}

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

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 820px;
  margin-top: 42px;
}

.about-hero-stats article {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}

.about-hero-stats strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.about-hero-stats span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 700;
}

/* OVERVIEW */

.corporate-overview {
  padding: 105px 0 75px;
  background:
    linear-gradient(180deg, #0E131B, #0A0E16);
  position: relative;
  overflow: hidden;
}

.corporate-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: .24;
  pointer-events: none;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 56px;
  align-items: center;
}

.overview-copy h2,
.standards-copy h2,
.process-grid h2,
.industries-panel h2,
.client-value-card h2,
.about-cta-card h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.3px;
  font-weight: 850;
}

.overview-copy p,
.standards-copy p,
.process-grid p,
.industries-panel p,
.client-value-card p,
.about-cta-card p {
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.84;
  max-width: 820px;
}

.overview-panel {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 26px 70px rgba(0,0,0,.32);
  transition: 360ms ease;
}

.overview-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(42,107,255,.42);
  box-shadow: 0 36px 90px rgba(0,0,0,.44), 0 0 26px rgba(42,107,255,.14);
}

.overview-image {
  height: 410px;
  border-radius: 12px;
  overflow: hidden;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.08) contrast(1.04);
  transition: 520ms ease;
}

.overview-panel:hover .overview-image img {
  transform: scale(1.045);
}

.overview-panel-bottom {
  padding: 18px 4px 4px;
}

.overview-panel-bottom span {
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
}

.overview-panel-bottom strong {
  display: block;
  font-size: 19px;
  line-height: 1.28;
}

/* VALUE */

.value-section {
  padding: 75px 0 95px;
  background: #0A0E16;
}

.corporate-heading {
  margin-bottom: 34px;
}

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

.value-grid article {
  min-height: 250px;
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.064), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 18px 44px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
  transition: 320ms ease;
}

.value-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--accent);
}

.value-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(42,107,255,.42);
  box-shadow: 0 28px 64px rgba(0,0,0,.34), 0 0 24px rgba(42,107,255,.12);
}

.value-grid span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.value-grid h3 {
  margin: 16px 0 12px;
  font-size: 25px;
  font-weight: 850;
}

.value-grid p {
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.75;
}

/* STANDARDS */

.standards-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #080C13, #05070B);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.standards-card {
  display: grid;
  grid-template-columns: 1fr .42fr;
  gap: 34px;
  align-items: stretch;
  padding: 36px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}

.standards-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.standards-list div {
  padding: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.standards-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.standards-list span {
  display: block;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  font-size: 14px;
}

.standards-metric {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 28px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(42,107,255,.18), rgba(255,255,255,.035));
  border: 1px solid rgba(42,107,255,.28);
}

.standards-metric span {
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  font-weight: 900;
}

.standards-metric strong {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.05;
}

.standards-metric p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.68);
}

/* CAPABILITY PROFILE */

.capability-profile {
  padding: 100px 0;
  background: #0E131B;
}

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

.profile-grid article {
  min-height: 260px;
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.024));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  transition: 320ms ease;
}

.profile-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(42,107,255,.38);
  box-shadow: 0 28px 64px rgba(0,0,0,.32), 0 0 24px rgba(42,107,255,.12);
}

.profile-number {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(42,107,255,.13);
  border: 1px solid rgba(42,107,255,.35);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 22px;
}

.profile-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.profile-grid p {
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.75;
}

/* PROCESS */

.process-section {
  padding: 95px 0;
  background: #0A0E16;
}

.process-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
  transition: 300ms ease;
}

.process-list article:hover {
  transform: translateX(8px);
  border-color: rgba(42,107,255,.36);
  box-shadow: 0 24px 54px rgba(0,0,0,.28), 0 0 22px rgba(42,107,255,.1);
}

.process-list article > span {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: rgba(42,107,255,.12);
  border: 1px solid rgba(42,107,255,.34);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.process-list p {
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.72;
}

/* INDUSTRIES */

.industries-section {
  padding: 95px 0;
  background: #0E131B;
}

.industries-panel {
  padding: 36px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 26px 64px rgba(0,0,0,.26);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

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

.industries-grid span,
.client-value-points span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.052);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 14px;
  transition: 260ms ease;
}

.industries-grid span::before,
.client-value-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(42,107,255,.5);
}

.industries-grid span:hover,
.client-value-points span:hover {
  background: rgba(42,107,255,.16);
  border-color: rgba(42,107,255,.38);
  transform: translateY(-3px);
}

/* CLIENT VALUE */

.client-value-section {
  padding: 0 0 95px;
  background: #0E131B;
}

.client-value-card {
  padding: 36px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(42,107,255,.18), rgba(255,255,255,.04)),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 34px;
  align-items: center;
}

.client-value-points {
  display: grid;
  gap: 12px;
}

/* CTA */

.about-cta {
  padding: 0 0 105px;
  background: #0E131B;
}

.about-cta-card {
  padding: 38px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(42,107,255,.24), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 28px 70px rgba(0,0,0,.3),
    inset 0 0 50px rgba(255,255,255,.025);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.about-cta-card a {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 22px;
  border-radius: 4px;
  background: #fff;
  color: #10151F;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  transition: 260ms ease;
}

.about-cta-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0,0,0,.34);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .overview-grid,
  .standards-card,
  .process-grid,
  .industries-panel,
  .client-value-card {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .overview-image {
    height: 360px;
  }

  .standards-metric {
    min-height: 260px;
  }

  .about-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-card a {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-content {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .about-hero h1 {
    font-size: 38px;
    line-height: 1.04;
    letter-spacing: -1.2px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-hero-actions,
  .about-cta-card {
    flex-direction: column;
  }

  .about-hero-stats,
  .value-grid,
  .profile-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .corporate-overview,
  .standards-section,
  .capability-profile,
  .process-section,
  .industries-section {
    padding: 70px 0;
  }

  .value-section {
    padding: 60px 0 70px;
  }

  .overview-image {
    height: 260px;
  }

  .standards-card,
  .industries-panel,
  .client-value-card,
  .about-cta-card {
    padding: 24px;
    border-radius: 16px;
  }

  .standards-metric strong {
    font-size: 28px;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list article:hover {
    transform: translateY(-5px);
  }
}