:root {
  --white: #f6fbff;
  --blue-100: #d7f4ff;
  --teal-300: #5ce2d5;
  --teal-500: #14b8c9;
  --blue-600: #1365c5;
  --blue-900: #072449;
  --glass: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(7, 36, 73, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--blue-900);
  background: #ecf6ff;
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 8% 8%, var(--blue-100), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(92, 226, 213, 0.4), transparent 42%),
    radial-gradient(circle at 70% 80%, rgba(19, 101, 197, 0.35), transparent 45%),
    linear-gradient(160deg, #ffffff 0%, #ecf6ff 45%, #e2f4ff 100%);
  z-index: -3;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(0, 35, 66, 0.08) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.3;
  z-index: -2;
  pointer-events: none;
}

main {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
}

main::-webkit-scrollbar {
  display: none;
}

.panel {
  width: 100vw;
  height: 100vh;
  flex: 0 0 100vw;
  position: relative;
  padding: 7.4rem 8rem 5rem 9rem;
  overflow: hidden;
  scroll-snap-align: start;
  transform-origin: center center;
  --panel-opacity: 1;
  --panel-focus: 1;
  opacity: var(--panel-opacity);
  transition: opacity 240ms ease;
}

.panel .hero-content,
.panel .section-title-wrap,
.panel .horizontal-track,
.panel .contact-section-header,
.panel .contact-form-box,
.panel .minimal-footer {
  opacity: calc(0.72 + var(--panel-focus) * 0.28);
  transition: opacity 260ms ease;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.6rem;
  border-radius: 0;
  border-bottom: 1px solid rgba(19, 101, 197, 0.2);
  background: rgba(255, 255, 255, 0.101);
  box-shadow: 0 8px 24px rgba(7, 36, 73, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.brand-name {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(189, 228, 255, 0.35);
  background: rgba(8, 37, 73, 0.28);
  border-radius: 0.6rem;
  width: 2.35rem;
  height: 2.1rem;
  padding: 0.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 252, 255, 0.95);
}

.top-link {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.55rem 0.72rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.top-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.top-link.active {
  background: linear-gradient(120deg, rgba(20, 184, 201, 0.18), rgba(19, 101, 197, 0.22));
  color: #fff;
}

body.about-us-active .top-nav {
  background: rgba(255, 255, 255, 0.24);
  border-bottom-color: rgba(186, 227, 255, 0.5);
  box-shadow: 0 10px 28px rgba(7, 36, 73, 0.2);
  backdrop-filter: blur(16px);
}

body.about-us-active .brand-name {
  color: var(--blue-900);
  text-shadow: none;
}

body.about-us-active .top-link {
  color: #fff;
}

body.about-us-active .top-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

body.about-us-active .top-link.active {
  background: linear-gradient(120deg, rgba(20, 184, 201, 0.28), rgba(19, 101, 197, 0.34));
  color: #ffffff;
}

.side-nav {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(19, 101, 197, 0.2);
  border-radius: 2rem;
  padding: 0.9rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  box-shadow: var(--shadow);
}

.side-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nav-dot {
  position: relative;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: none;
  background: rgba(7, 36, 73, 0.22);
  cursor: pointer;
  transform: scale(1) translateZ(0);
  will-change: transform, background-color, box-shadow;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dot::after {
  content: "";
  position: absolute;
  inset: -0.32rem;
  border-radius: 50%;
  border: 1px solid rgba(92, 226, 213, 0.5);
  opacity: 0;
  transform: scale(0.76);
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dot.active {
  transform: scale(1.22) translateZ(0);
  background: linear-gradient(120deg, var(--teal-500), var(--blue-600));
  box-shadow: 0 4px 14px rgba(19, 101, 197, 0.28);
}

.nav-dot.active::after {
  opacity: 1;
  transform: scale(1);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
  color: rgba(7, 36, 73, 0.7);
  margin-bottom: 0.55rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 4.9vw, 5rem);
  line-height: 1.02;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  line-height: 1.05;
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.75rem);
  margin-bottom: 0.8rem;
}

p {
  margin: 0;
  line-height: 1.72;
}

.hero-content {
  max-width: 58rem;
  position: relative;
  z-index: 4;
}

.hero {
  display: grid;
  place-items: center;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(92, 226, 213, 0) 12%,
    rgba(92, 226, 213, 0.12) 38%,
    rgba(174, 225, 255, 0.18) 50%,
    rgba(92, 226, 213, 0.08) 62%,
    rgba(92, 226, 213, 0) 88%
  );
  mix-blend-mode: screen;
  opacity: 0.52;
  z-index: 1;
  pointer-events: none;
  animation: heroScanSweep 16s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.74),
      rgba(0, 56, 112, 0.78)
    ),
    url("images/data-hero.jpeg") center / cover no-repeat;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem; 
  padding-bottom: 0.5rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.92);
}

.hero-logo-mark {
  width: clamp(7.5rem, 16vw, 12.5rem);
  height: auto;
  display: block;
  margin: 0.2rem 0 0.9rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.lead {
  margin: 1.55rem 0 2.1rem;
  max-width: 50ch;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  color: rgba(7, 36, 73, 0.85);
  
}

.cta {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--teal-500), var(--blue-600));
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(19, 101, 197, 0.28);
}

.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta.cta-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(220, 242, 255, 0.78);
  box-shadow: 0 10px 24px rgba(7, 36, 73, 0.22);
}

.parallax-layer {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}

.layer-1 {
  width: 25rem;
  aspect-ratio: 1;
  background: linear-gradient(120deg, rgba(92, 226, 213, 0.45), rgba(19, 101, 197, 0.12));
  right: -6rem;
  top: -3rem;
}

.layer-2 {
  width: 17rem;
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.329), rgba(19, 101, 197, 0.1));
  left: 15rem;
  bottom: 5rem;
}

.layer-3 {
  width: 11rem;
  aspect-ratio: 1;
  background: rgba(92, 226, 213, 0.239);
  right: 30%;
  top: 15%;
}

.layer-4 {
  width: 13rem;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(92, 226, 213, 0.58), rgba(19, 101, 197, 0.24));
  right: 8%;
  bottom: 7%;
}


.section-title-wrap {
  margin-bottom: 2rem;
}

.horizontal-track {
  display: flex;
  gap: 1.4rem;
  width: 100%;
  will-change: transform;
}

.slide-card {
  width: clamp(18rem, 31vw, 27rem);
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(19, 101, 197, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#mission .slide-card {
  width: 100%;
}

#applications {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
      140deg,
      rgba(7, 34, 67, 0.84) 0%,
      rgba(11, 59, 113, 0.62) 52%,
      rgba(19, 101, 197, 0.4) 100%
    ),
    url("images/semicon.jpg") center center / cover no-repeat;
}

#applications .section-title-wrap,
#applications .applications-tabs {
  position: relative;
  z-index: 2;
}

#applications .section-title-wrap {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#applications .section-title-wrap h2,
#applications .section-title-wrap .eyebrow {
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

#applications .applications-tabs {
  width: min(78rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

#applications .app-tab-list {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

#applications .app-tab {
  border: 1px solid rgba(189, 228, 255, 0.32);
  background: rgba(8, 31, 66, 0.42);
  color: rgba(231, 245, 255, 0.92);
  border-radius: 0.7rem 0.7rem 0 0;
  border-bottom: 0;
  padding: 0.5rem 0.82rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#applications .app-tab:hover {
  background: rgba(13, 56, 108, 0.56);
  border-color: rgba(214, 239, 255, 0.5);
}

#applications .app-tab.active {
  background: linear-gradient(120deg, rgba(20, 184, 201, 0.32), rgba(19, 101, 197, 0.38));
  border-color: rgba(206, 235, 255, 0.7);
  color: #ffffff;
  transform: translateY(1px);
}

#applications .app-tab i {
  font-size: 0.95rem;
}

#applications .app-tab-panels {
  position: relative;
}

#applications .app-panel {
  width: min(66rem, 100%);
  margin: 0 auto;
  min-height: 25rem;
  height: 25rem;
  border-top-left-radius: 0;
  margin-top: -1px;
}

#applications .app-panel-content {
  display: grid;
  grid-template-columns: minmax(18rem, 25rem) minmax(0, 1fr);
  align-items: stretch;
  gap: 1rem 1.15rem;
  height: 100%;
}

#applications .app-media-strip {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  padding: 0.35rem 0;
}

#applications .app-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 0;
  padding-top: 0.35rem;
}

#applications .app-media-strip img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 0.7rem;
  border: 1px solid rgba(189, 228, 255, 0.3);
  background: rgba(11, 51, 100, 0.45);
}

#applications .app-copy h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 1.55vw, 1.75rem);
  line-height: 1.2;
}

#applications .app-copy p {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  font-size: clamp(0.9rem, 0.9vw, 0.9rem);
  line-height: 1.72;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 233, 255, 0.65) rgba(7, 36, 73, 0.22);
}

#applications .app-copy p::-webkit-scrollbar {
  width: 0.45rem;
}

#applications .app-copy p::-webkit-scrollbar-track {
  background: rgba(7, 36, 73, 0.2);
  border-radius: 999px;
}

#applications .app-copy p::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(219, 241, 255, 0.8), rgba(92, 226, 213, 0.58));
  border-radius: 999px;
  border: 1px solid rgba(7, 36, 73, 0.15);
}

#applications .app-copy p::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(231, 246, 255, 0.92), rgba(92, 226, 213, 0.72));
}

#applications .app-panel:not(.active) {
  display: none;
}

#applications .app-card {
  color: #ffffff;
  background: linear-gradient(165deg, rgba(8, 31, 66, 0.66), rgba(12, 56, 108, 0.44));
  border-color: rgba(189, 228, 255, 0.3);
}

#applications .app-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}

#applications .app-card .card-icon {
  color: #dff4ff;
  background: linear-gradient(140deg, rgba(92, 226, 213, 0.24), rgba(19, 101, 197, 0.3));
  box-shadow: inset 0 0 0 1px rgba(189, 228, 255, 0.28);
}

#products .slide-card {
  width: clamp(15.5rem, 22vw, 19.5rem);
  min-height: 27rem;
}

#products .section-title-wrap,
#products .horizontal-track {
  position: relative;
  z-index: 2;
}

#products {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      140deg,
      rgba(6, 24, 52, 0.562) 0%,
      rgba(10, 48, 94, 0.294) 45%,
      rgba(29, 91, 153, 0.144) 100%
    ),
    url("images/fluid.jpg") center center / cover no-repeat;
  isolation: isolate;
}

#products::before,
#products::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  
}

#products::before {
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  right: auto;
  top: auto;
  border-radius: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(92, 226, 213, 0.18) 42%,
    rgba(19, 101, 197, 0.12) 100%
  );
  mix-blend-mode: screen;
  animation: productsAuroraShift 20s ease-in-out infinite alternate;
}

#products::before {
  background-image:
    radial-gradient(circle at 18% 26%, rgba(176, 233, 255, 0.24), transparent 42%),
    radial-gradient(circle at 82% 70%, rgba(92, 226, 213, 0.18), transparent 36%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(92, 226, 213, 0.18) 42%,
      rgba(19, 101, 197, 0.12) 100%
    );
}

#products::after {
  width: 24rem;
  aspect-ratio: 1;
  left: -7rem;
  bottom: -6rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, rgba(145, 222, 255, 0.34), rgba(19, 101, 197, 0.12) 52%, rgba(19, 101, 197, 0) 74%);
  filter: blur(2px);
  animation: productsGlowDrift 14s ease-in-out infinite;
}

#products .horizontal-track::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 14%,
      rgba(174, 225, 255, 0.2) 48%,
      rgba(255, 255, 255, 0) 82%
    );
  transform: translateX(-18%);
  opacity: 0.42;
  filter: blur(10px);
  animation: productsSweep 11s ease-in-out infinite;
}

#products .horizontal-track {
  position: relative;
  overflow: visible;
}

@keyframes productsAuroraShift {
  0% {
    transform: translate3d(-2%, 1%, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(1%, -1%, 0) scale(1.03);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(3%, 0.5%, 0) scale(1.05);
    opacity: 0.74;
  }
}

@keyframes productsGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.52;
  }
  50% {
    transform: translate3d(18px, -12px, 0) scale(1.08);
    opacity: 0.72;
  }
  100% {
    transform: translate3d(34px, -4px, 0) scale(0.98);
    opacity: 0.48;
  }
}

@keyframes productsSweep {
  0% {
    transform: translateX(-24%);
    opacity: 0.24;
  }
  50% {
    transform: translateX(3%);
    opacity: 0.5;
  }
  100% {
    transform: translateX(24%);
    opacity: 0.24;
  }
}

#products .section-title-wrap {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

#products .section-title-wrap h2,
#products .section-title-wrap .eyebrow {
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

#products .slide-card {
  color: #ffffff;
  background: linear-gradient(165deg, rgba(8, 31, 66, 0.62), rgba(12, 56, 108, 0.44));
  border-color: rgba(189, 228, 255, 0.24);
}

#products .product-pill {
  color: #e7f5ff;
  background: linear-gradient(120deg, rgba(92, 226, 213, 0.3), rgba(19, 101, 197, 0.3));
  border-color: rgba(189, 228, 255, 0.32);
}

#products .product-points {
  color: rgba(235, 246, 255, 0.92);
}

#products .horizontal-track {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.products-carousel-controls {
  display: none;
}

#benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("images/automative.jpg") center center / cover no-repeat;
}

#benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.28), transparent 44%),
    radial-gradient(circle at 62% 72%, rgba(196, 238, 255, 0.24), transparent 42%),
    radial-gradient(circle at 86% 28%, rgba(146, 216, 255, 0.2), transparent 36%),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 18%,
      rgba(92, 226, 213, 0.16) 50%,
      rgba(255, 255, 255, 0) 82%
    );
  filter: blur(10px);
  opacity: 0.85;
  z-index: 1;
}

#benefits::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    145deg,
    rgba(4, 20, 44, 0.42) 0%,
    rgba(7, 34, 69, 0.35) 55%,
    rgba(12, 53, 98, 0.31) 100%
  );
  z-index: 1;
}

#benefits .section-title-wrap,
#benefits .horizontal-track {
  position: relative;
  z-index: 2;
}

#benefits .benefits-scroll-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

#benefits .section-title-wrap {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#benefits .section-title-wrap h2,
#benefits .section-title-wrap .eyebrow {
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

#benefits .horizontal-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 1rem;
  width: min(74rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

#benefits .benefit-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  min-height: 13.5rem;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(19, 101, 197, 0.2);
}

#benefits .benefit-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.85rem;
  border-radius: 0.8rem;
  background: linear-gradient(140deg, rgba(20, 184, 201, 0.2), rgba(19, 101, 197, 0.25));
  color: var(--blue-600);
  box-shadow: inset 0 0 0 1px rgba(19, 101, 197, 0.18);
}

#benefits .benefit-icon i {
  font-size: 1.35rem;
}

#benefits .benefit-card h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.48rem);
  font-weight: 600;
}

#benefits .benefit-card p {
  color: rgba(7, 36, 73, 0.86);
}

#benefits .benefit-card:nth-child(4),
#benefits .benefit-card:nth-child(5) {
  flex: 0 0 calc((100% - 2rem) / 3);
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 101, 197, 0.24);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(236, 246, 255, 0.72));
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.product-card:hover::before {
  left: 145%;
}

.product-pill {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: linear-gradient(120deg, rgba(92, 226, 213, 0.22), rgba(19, 101, 197, 0.2));
  border: 1px solid rgba(19, 101, 197, 0.22);
}

.product-points {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: rgba(7, 36, 73, 0.86);
  font-size: 0.9rem;
}

.product-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 28px 60px rgba(7, 36, 73, 0.26);
}

#mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/back-aero.jpeg") right bottom / cover no-repeat;
  -webkit-mask-image: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.72) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.72) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
  animation: missionDrift 18s ease-in-out infinite alternate;
}

#mission::after {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.28), transparent 44%),
    radial-gradient(circle at 62% 72%, rgba(196, 238, 255, 0.24), transparent 42%),
    radial-gradient(circle at 86% 28%, rgba(146, 216, 255, 0.2), transparent 36%),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 18%,
      rgba(92, 226, 213, 0.16) 50%,
      rgba(255, 255, 255, 0) 82%
    );
  z-index: 1;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.85;
  transform: translateX(-12%);
  animation: missionSweep 14s ease-in-out infinite, missionHaze 20s ease-in-out infinite alternate;
}

#mission .section-title-wrap,
#mission .horizontal-track {
  position: relative;
  z-index: 2;
}

#mission .mission-scroll-content {
  position: relative;
  z-index: 2;
}

@media (min-width: 761px) {
  #mission .mission-scroll-content {
    width: 100%;
    min-height: calc(100vh - 12.4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

#mission .section-title-wrap {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#mission .section-title-wrap h2,
#mission .section-title-wrap .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

#mission .section-title-wrap .eyebrow {
  color: rgba(244, 252, 255, 0.98);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

#mission .section-title-wrap h2 {
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.6);
}

#applications .section-title-wrap .eyebrow,
#products .section-title-wrap .eyebrow,
#benefits .section-title-wrap .eyebrow,
.contact-section-header .eyebrow {
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

#applications .section-title-wrap h2,
#products .section-title-wrap h2,
#benefits .section-title-wrap h2,
.contact-section-header h2 {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.46), 0 1px 2px rgba(0, 0, 0, 0.56);
}

.mission-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.mission-orb-1 {
  width: 14rem;
  aspect-ratio: 1;
  right: 20%;
  top: 14%;
  background: linear-gradient(130deg, rgba(92, 226, 213, 0.46), rgba(19, 101, 197, 0.12));
}

.mission-orb-2 {
  width: 10rem;
  aspect-ratio: 1;
  left: 10%;
  bottom: 16%;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(19, 101, 197, 0.2));
}

.mission-orb-3 {
  width: 7rem;
  aspect-ratio: 1;
  right: 8%;
  bottom: 34%;
  background: rgba(92, 226, 213, 0.45);
}

#mission .horizontal-track {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem 1.1rem;
  align-content: start;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: min(76rem, 100%);
}

#mission .horizontal-track .mission-about-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 100%;
}

#mission .horizontal-track .slide-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

#mission .horizontal-track .slide-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

#mission .horizontal-track .slide-card:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

#mission .mission-about-copy {
  position: relative;
}

#mission .slide-card {
  padding: 1.9rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#mission .slide-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  margin-bottom: 0.95rem;
}

#mission .slide-card p {
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.78;
}

#mission .slide-card .card-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.15rem;
}

#mission .slide-card .card-icon i {
  font-size: 2.15rem;
}

#mission .slide-card:hover {
  border-color: rgba(20, 184, 201, 0.45);
  box-shadow: 0 24px 56px rgba(7, 36, 73, 0.24), 0 0 0 1px rgba(20, 184, 201, 0.18) inset;
}

.slide-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-3deg);
  box-shadow: 0 28px 64px rgba(7, 36, 73, 0.24);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  background: linear-gradient(140deg, rgba(20, 184, 201, 0.18), rgba(19, 101, 197, 0.24));
  color: var(--blue-600);
  box-shadow: inset 0 0 0 1px rgba(19, 101, 197, 0.2);
}

.card-icon i {
  font-size: 2rem;
}

.footer-panel {
  display: grid;
  place-items: end center;
  padding-bottom: 1.25rem;
  background: linear-gradient(
      135deg,
      rgba(4, 18, 40, 0.78) 0%,
      rgba(7, 37, 74, 0.68) 50%,
      rgba(12, 60, 110, 0.56) 100%
    ),
    url("images/industry.jpg") center center / cover no-repeat;
}

.contact-scroll-content {
  width: min(980px, 100%);
}

.contact-section-header {
  width: min(820px, 100%);
  margin-bottom: 1.1rem;
  text-align: center;
  color: #ffffff;
}

.contact-section-header h2 {
  max-width: none;
  color: #ffffff;
}

.contact-section-header .eyebrow {
  color: rgba(235, 246, 255, 0.95);
}

.contact-form-box {
  width: min(980px, 100%);
  border: 1px solid rgba(19, 101, 197, 0.24);
  border-radius: 1.15rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.3), rgba(241, 249, 255, 0.1));
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 48px rgba(5, 27, 54, 0.24);
  padding: 1.45rem 1.35rem;
  min-height: 25rem;
  margin-bottom: 1.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-form-title {
  margin: 0 0 0.8rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-900);
}

.minimal-footer {
  width: min(700px, 100%);
  border-top: 1px solid rgba(19, 101, 197, 0.2);
  padding-top: 1.1rem;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
  color: #ffffff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-brand img {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  object-fit: cover;
}

.footer-tagline {
  max-width: 45ch;
  color: rgba(232, 245, 255, 0.95);
  font-size: 0.88rem;
}

.footer-form {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.05rem 1rem;
  text-align: left;
}

.footer-form label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.901);
  text-align: left;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 101, 197, 0.24);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.454);
  color: var(--blue-900);
  font: inherit;
  padding: 0.74rem 0.82rem;
  text-align: left;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(7, 36, 73, 0.45);
}

.footer-form textarea {
  resize: none;
  min-height: 6.5rem;
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: rgba(68, 166, 230, 0.88);
  box-shadow: 0 0 0 3px rgba(73, 173, 241, 0.2);
  background: #ffffff;
}

.footer-form .message-field {
  grid-column: 1 / -1;
  margin-bottom: 0.55rem;
}

.footer-submit {
  grid-column: 1 / -1;
  justify-self: start;
  border: 1px solid rgba(170, 220, 255, 0.5);
  border-radius: 999px;
  padding: 0.74rem 1.35rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f5fbff;
  background: linear-gradient(120deg, rgba(32, 134, 216, 0.95), rgba(21, 94, 165, 0.92));
  box-shadow: 0 10px 24px rgba(6, 41, 82, 0.3);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-info-card {
  border: 1px solid rgba(19, 101, 197, 0.24);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.25rem 1rem 0.9rem 1.25rem;
  color: var(--blue-900);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-info-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.12rem;
}

.contact-info-list {
  display: grid;
  gap: 0.95rem;
}

.contact-info-item {
  margin: 0;
  display: grid;
  grid-template-columns: 1.05rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-info-item i {
  margin-top: 0.18rem;
  color: var(--blue-600);
}

.contact-info-text {
  display: grid;
  gap: 0.1rem;
}

.contact-person-name {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
}

.contact-person-phone {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-info-email {
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-submit:hover {
  background: linear-gradient(120deg, rgba(45, 154, 238, 0.98), rgba(24, 108, 190, 0.94));
  border-color: rgba(201, 236, 255, 0.95);
  transform: translateY(-2px);
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: #d8eeff;
  font-weight: 600;
  font-size: 0.88rem;
}

.footer-meta {
  font-size: 0.78rem;
  color: rgba(219, 238, 255, 0.78);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.mobile-pager {
  display: none;
}

.products-carousel-controls[hidden] {
  display: none !important;
}

@keyframes missionDrift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.03) translate3d(-1.2%, 1.2%, 0);
  }
}

@keyframes heroScanSweep {
  from {
    transform: translate3d(-2.2%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2.2%, 0, 0) scale(1.02);
  }
}


@keyframes missionSweep {
  0% {
    transform: translateX(-14%);
    opacity: 0.3;
  }
  50% {
    transform: translateX(8%);
    opacity: 0.55;
  }
  100% {
    transform: translateX(18%);
    opacity: 0.3;
  }
}

@keyframes missionHaze {
  0% {
    transform: translate3d(-16%, 1.2%, 0) scale(1);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(3%, -0.9%, 0) scale(1.03);
    opacity: 0.86;
  }
  100% {
    transform: translate3d(20%, 1%, 0) scale(1.05);
    opacity: 0.64;
  }
}

@media (max-width: 1100px) {
  .panel {
    padding: 6.8rem 2rem 4rem 4.5rem;
  }

  .minimal-footer {
    width: 100%;
  }
}

@media (max-width: 760px) {
  main {
    overflow-x: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: none;
    touch-action: pan-y;
    scroll-behavior: auto;
  }

  .top-nav {
    top: 0;
    width: 100%;
    padding: max(0.5rem, env(safe-area-inset-top)) 0.7rem 0.5rem;
    align-items: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.about-us-active .top-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

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

  .top-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0.7rem;
    left: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.5rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(189, 228, 255, 0.28);
    background: rgba(8, 37, 73, 0.84);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 36px rgba(7, 36, 73, 0.28);
  }

  .top-links.open {
    display: flex;
  }

  .top-link {
    width: 100%;
    text-align: left;
    font-size: 0.78rem;
    padding: 0.55rem 0.6rem;
  }

  .brand-name {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
  }

  .side-nav {
    display: none;
  }

  .panel {
    width: 100vw;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    padding: calc(5.2rem + env(safe-area-inset-top)) 1.1rem calc(4.5rem + env(safe-area-inset-bottom)) 1.1rem;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-align: none;
    transition: none;
    opacity: 1;
  }

  .panel .hero-content,
  .panel .section-title-wrap,
  .panel .horizontal-track,
  .panel .contact-section-header,
  .panel .contact-form-box,
  .panel .minimal-footer {
    opacity: 1;
    transition: none;
  }

  .slide-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .slide-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: calc(100svh - env(safe-area-inset-top));
  }

  .hero-logo-mark {
    width: clamp(5.5rem, 22vw, 8rem);
    margin: 0.1rem 0 0.7rem;
    filter: none;
  }

  .hero .eyebrow {
    font-size: 1.1rem;
    padding-bottom: 0.35rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.6rem);
  }

  .hero .lead {
    margin: 1rem 0 1.4rem;
    font-size: 0.96rem;
  }

  .hero::after {
    animation: none;
    mix-blend-mode: normal;
    opacity: 0.32;
  }

  .horizontal-track {
    display: flex;
    width: 100%;
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding-bottom: 0.5rem;
  }

  .slide-card {
    width: 82vw;
    min-width: 82vw;
    scroll-snap-align: start;
  }

  #products .horizontal-track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding-bottom: 0;
    height: calc(100svh - (8.9rem + env(safe-area-inset-top) + env(safe-area-inset-bottom)));
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #products .horizontal-track::-webkit-scrollbar {
    display: none;
  }

  #products .slide-card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #products .slide-card::-webkit-scrollbar {
    display: none;
  }

  #products .products-carousel-controls {
    width: auto;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(0.95rem + env(safe-area-inset-bottom));
    z-index: 1200;
  }

  #products .products-arrow {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(189, 228, 255, 0.44);
    background: rgba(8, 31, 66, 0.68);
    color: #ffffff;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  }

  #products .products-arrow:active {
    transform: scale(0.95);
  }

  #products .products-arrow:hover {
    background: rgba(15, 59, 113, 0.78);
    border-color: rgba(214, 239, 255, 0.68);
  }

  #mission .section-title-wrap {
    padding-top: 0;
    margin-bottom: 1.25rem;
  }


  #mission .horizontal-track {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.9rem;
    overflow: visible;
    max-height: none;
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    scroll-snap-type: none;
  }

  #mission {
    padding: 0;
    overflow: hidden;
  }

  #mission .mission-scroll-content {
    position: absolute;
    top: calc(3.6rem + env(safe-area-inset-top));
    right: 1.1rem;
    bottom: 0;
    left: 1.1rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #mission .mission-scroll-content::-webkit-scrollbar {
    display: none;
  }

  #mission::before,
  #mission::after,
  #mission .mission-orb {
    animation: none;
    transform: none;
  }

  #mission::after {
    display: none;
  }

  #mission .slide-card {
    padding: 1.2rem 1.15rem;
  }

  #mission .slide-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
  }

  #mission .slide-card p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  #mission .slide-card .card-icon {
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.7rem;
  }

  #mission .slide-card .card-icon i {
    font-size: 1.5rem;
  }

  #mission .horizontal-track .mission-about-copy,
  #mission .horizontal-track .slide-card:nth-child(2),
  #mission .horizontal-track .slide-card:nth-child(3),
  #mission .horizontal-track .slide-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    min-height: auto;
    scroll-snap-align: none;
  }

  #mission .horizontal-track .slide-card:nth-child(4) {
    margin-bottom: 1rem;
  }

  #applications {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    padding: calc(3.6rem + env(safe-area-inset-top)) 1.1rem
      calc(4.5rem + env(safe-area-inset-bottom)) 1.1rem;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  #applications .section-title-wrap {
    min-height: 0;
    margin-bottom: 1rem;
  }

  #applications .applications-tabs {
    min-height: 0;
    height: auto;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #applications .applications-tabs::-webkit-scrollbar {
    display: none;
  }

  #applications .app-tab-list {
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.35rem;
    flex-wrap: nowrap;
  }

  #applications .app-tab {
    min-width: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    justify-content: center;
    border-radius: 0.6rem 0.6rem 0 0;
  }

  #applications .app-tab span {
    display: none;
  }

  #applications .app-panel {
    min-height: 0;
    height: auto;
    padding: 1rem;
  }

  #applications .app-tab-panels {
    min-height: 0;
    display: block;
  }

  #applications .app-panel-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0.8rem;
    height: auto;
  }

  #applications .app-media-strip {
    height: 9.5rem;
    padding: 0;
  }

  #applications .app-media-strip img {
    height: 100%;
  }

  #applications .app-copy {
    min-height: 0;
    padding-top: 0;
  }

  #applications .app-copy h3 {
    font-size: 1.18rem;
    margin-bottom: 0.45rem;
  }

  #applications .app-copy p {
    overflow: visible;
    max-height: none;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  #benefits .horizontal-track {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.9rem;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  #benefits {
    padding: 0;
    display: block;
    overflow: hidden;
  }

  #benefits::before,
  #benefits::after {
    animation: none;
    filter: none;
  }

  #benefits .benefits-scroll-content {
    position: absolute;
    top: calc(3.6rem + env(safe-area-inset-top));
    right: auto;
    bottom: 0;
    left: 1.1rem;
    width: calc(100vw - 2.2rem);
    max-width: calc(100vw - 2.2rem);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #benefits .benefits-scroll-content::-webkit-scrollbar {
    display: none;
  }

  #benefits .section-title-wrap {
    margin-bottom: 1rem;
  }

  #benefits .benefit-card {
    min-height: 0;
    padding: 1.15rem 1.1rem;
    width: 100%;
    min-width: 0;
    max-width: none;
    scroll-snap-align: none;
    flex: 1 1 100%;
  }

  #benefits .benefit-card h3 {
    font-size: 1.15rem;
  }

  #benefits .benefit-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  #benefits .benefit-icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 0.65rem;
  }

  #benefits .benefit-icon i {
    font-size: 1.15rem;
  }

  .footer-links {
    gap: 0.75rem;
  }

  .footer-panel {
    display: block;
    padding: 0;
  }

  #contact {
    overflow: hidden;
  }

  #contact .contact-scroll-content {
    position: absolute;
    top: calc(3.6rem + env(safe-area-inset-top));
    right: 1.1rem;
    bottom: 0;
    left: 1.1rem;
    width: auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #contact .contact-scroll-content::-webkit-scrollbar {
    display: none;
  }

  .contact-section-header {
    margin: 0 auto 0.85rem;
    width: 100%;
  }

  .contact-section-header h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .contact-form-box {
    padding: 1rem 0.9rem;
    top: 0;
    min-height: 0;
    margin: 0 auto 0.9rem;
    border-radius: 0.95rem;
    position: relative;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .footer-form {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-form label {
    gap: 0.3rem;
    font-size: 0.74rem;
  }

  .footer-form input,
  .footer-form textarea {
    padding: 0.62rem 0.7rem;
    border-radius: 0.65rem;
    font-size: 0.9rem;
  }

  .footer-form textarea {
    min-height: 4.6rem;
  }

  .footer-form .message-field {
    margin-bottom: 0.3rem;
  }

  .footer-submit {
    justify-self: stretch;
    width: 100%;
    padding: 0.64rem 1rem;
    font-size: 0.9rem;
  }

  .contact-info-card {
    padding: 0.65rem 0.75rem 0.7rem;
  }

  .contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .contact-info-list {
    gap: 0.6rem;
  }

  .contact-info-item {
    font-size: 0.84rem;
    gap: 0.45rem;
  }

  .contact-person-name {
    font-size: 1rem;
  }

  .contact-person-phone {
    font-size: 0.82rem;
  }

  .minimal-footer {
    padding-top: 0.85rem;
    gap: 0.35rem;
  }

  .footer-tagline,
  .footer-links,
  .footer-brand,
  .footer-meta:not(.footer-copyright) {
    display: none;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-meta {
    font-size: 0.72rem;
  }

  #products::before,
  #products::after,
  #products .horizontal-track::before {
    display: none;
  }

  .product-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

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

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

  .mobile-pager {
    position: fixed;
    top: calc(3.6rem + env(safe-area-inset-top));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    display: block;
    pointer-events: none;
  }

  .mobile-pager-btn {
    position: absolute;
    top: auto;
    bottom: calc(0.8rem + env(safe-area-inset-bottom));
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(104, 115, 130, 0.694);
    color: rgba(255, 255, 255, 0.95);
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font: inherit;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(7, 36, 73, 0.22);
    pointer-events: auto;
    transform: none;
    transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-pager-prev {
    left: 0;
    border-radius: 0 0.45rem 0.45rem 0;
    border-left: 0;
  }

  .mobile-pager-next {
    right: 0;
    border-radius: 0.45rem 0 0 0.45rem;
    border-right: 0;
  }

  .mobile-pager-btn i {
    font-size: 0.78rem;
  }

  .mobile-pager-btn:active {
    transform: scale(0.94);
  }

  .mobile-pager-btn:hover {
    background: rgba(104, 115, 130, 0.58);
    border-color: rgba(255, 255, 255, 0.45);
  }

  .mobile-pager-btn[hidden] {
    display: none;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
