:root {
  --navy: #061826;
  --deep-blue: #0b2d4d;
  --blue: #0e6ba8;
  --bright-blue: #1ba7ec;
  --ice: #eaf7ff;
  --white: #ffffff;
  --text: #122234;
  --muted: #6b7280;
  --soft-muted: #d9e8f4;
  --line: rgba(14, 107, 168, 0.16);
  --line-strong: rgba(27, 167, 236, 0.32);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --glass-line: rgba(255, 255, 255, 0.18);
  --metal: #c8d9e8;
  --shadow-soft: 0 18px 45px rgba(6, 24, 38, 0.12);
  --shadow-card: 0 24px 70px rgba(6, 24, 38, 0.14);
  --shadow-strong: 0 32px 90px rgba(6, 24, 38, 0.28);
  --radius-sm: 6px;
  --radius: 8px;
  --header-height: 78px;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(14, 107, 168, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 107, 168, 0.035) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(27, 167, 236, 0.16), transparent 34rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f3f9fd 100%);
  background-size: 44px 44px, 44px 44px, auto, auto;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

button {
  border: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3,
.brand-name {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

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

.section {
  padding: 112px 0;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bright-blue), rgba(27, 167, 236, 0));
}

.section-kicker.light {
  color: #bdeaff;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.cta-panel h2,
.contact-info h2 {
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.section-heading p,
.section-copy p,
.cta-panel p,
.contact-info p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  color: var(--white);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.26) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--bright-blue));
  box-shadow: 0 16px 34px rgba(14, 107, 168, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(14, 107, 168, 0.36);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(6, 24, 38, 0.58), rgba(6, 24, 38, 0.12));
  backdrop-filter: blur(22px);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  height: var(--header-height);
  border-color: rgba(14, 107, 168, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 35px rgba(6, 24, 38, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  --brand-logo-width: 82px;
  --brand-logo-height: 70px;
}

.brand-logo-wrap {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: var(--brand-logo-width);
  height: var(--brand-logo-height);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.brand-name {
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 700;
}

.brand-name strong {
  color: #bdeaff;
}

.site-header.is-scrolled .brand-name {
  color: var(--navy);
}

.site-header.is-scrolled .brand-name strong {
  color: var(--blue);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav-link {
  color: #41556b;
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active {
  color: var(--blue);
  background: rgba(14, 107, 168, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.site-header.is-scrolled .nav-toggle {
  background: rgba(14, 107, 168, 0.08);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--navy);
}

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

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

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

.hero {
  position: relative;
  min-height: 98svh;
  padding: var(--header-height) 0 138px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(27, 167, 236, 0.5), transparent 31rem),
    radial-gradient(circle at 18% 76%, rgba(14, 107, 168, 0.42), transparent 30rem),
    linear-gradient(115deg, #03111c 0%, var(--navy) 28%, var(--deep-blue) 63%, #073e67 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 41%, rgba(27, 167, 236, 0.1) 41.2%, transparent 42%),
    linear-gradient(70deg, transparent 0 58%, rgba(234, 247, 255, 0.07) 58.2%, transparent 59%),
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.08), transparent 32rem);
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(247, 251, 255, 0.96));
}

.hero-grid-pattern,
.quality-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 55% 32%, #000 0%, transparent 72%);
}

.hero-blueprint-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    repeating-linear-gradient(135deg, transparent 0 58px, rgba(27, 167, 236, 0.16) 59px, transparent 60px),
    repeating-linear-gradient(45deg, transparent 0 92px, rgba(255, 255, 255, 0.08) 93px, transparent 94px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), #000 62%, transparent);
}

.hero-scanline {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 20%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(27, 167, 236, 0.76), rgba(234, 247, 255, 0.5), transparent);
  box-shadow: 0 0 28px rgba(27, 167, 236, 0.55);
  animation: scanline 8s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-orb-one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 120px;
  background: radial-gradient(circle, rgba(27, 167, 236, 0.32), transparent 70%);
}

.hero-orb-two {
  width: 210px;
  height: 210px;
  left: 7%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(234, 247, 255, 0.13), transparent 72%);
}

.hero-slider-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 76px;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: clamp(500px, calc(100svh - var(--header-height)), 680px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(6, 24, 38, 0.92), rgba(11, 45, 77, 0.74)),
    var(--navy);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(3, 17, 28, 0.94) 0%, rgba(3, 17, 28, 0.82) 31%, rgba(3, 17, 28, 0.34) 58%, rgba(3, 17, 28, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 17, 28, 0.2), rgba(3, 17, 28, 0.78));
}

.hero-slide::after {
  background-image:
    linear-gradient(rgba(234, 247, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 247, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 72%);
  opacity: 0.46;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: inherit;
  height: 100%;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  min-width: 0;
  max-width: 100%;
  min-height: inherit;
  align-items: center;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.01);
  transition: transform 1800ms ease, filter 720ms ease;
}

.hero-slide.is-active img {
  transform: scale(1.05);
  filter: saturate(1.12) contrast(1.08);
}

.hero-slide-content {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 40px), var(--container));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  padding: clamp(48px, 7vw, 92px) 0 clamp(88px, 8vw, 118px);
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #bdeaff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.slide-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bright-blue), rgba(27, 167, 236, 0));
}

.hero-slide h2 {
  margin-top: 16px;
  max-width: 620px;
  color: var(--white);
  font-size: clamp(2.65rem, 6vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.hero-slide p {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(234, 247, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.72;
}

.slide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.slide-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(234, 247, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-slider-dots {
  position: absolute;
  z-index: 5;
  left: max(20px, calc((100% - var(--container)) / 2));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.slider-dot {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width var(--transition), background var(--transition), opacity var(--transition);
}

.slider-dot:hover,
.slider-dot.is-active {
  width: 58px;
  background: var(--bright-blue);
}

.hero-slider-nav {
  position: absolute;
  z-index: 5;
  right: max(20px, calc((100% - var(--container)) / 2));
  bottom: 32px;
  display: flex;
  gap: 10px;
}

.slider-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(6, 24, 38, 0.52);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.slider-arrow span {
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.slider-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 167, 236, 0.58);
  background: rgba(14, 107, 168, 0.58);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 64px;
}

.hero-copy h1 {
  margin-top: 16px;
  max-width: 760px;
  font-size: clamp(2.85rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.hero-text {
  max-width: 670px;
  margin-top: 26px;
  color: rgba(234, 247, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.8;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(27, 167, 236, 0.28);
  border-radius: 999px;
  padding: 0 11px;
  color: rgba(234, 247, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(234, 247, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-visual {
  perspective: 1200px;
}

.visual-frame {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06) 42%, rgba(27, 167, 236, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
  backdrop-filter: blur(22px);
  transform: rotateX(4deg) rotateY(-8deg);
  transform-style: preserve-3d;
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.visual-frame::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.18) 34%, transparent 43%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 36%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.visual-frame::after {
  inset: 18px;
  border: 1px solid rgba(234, 247, 255, 0.14);
  border-radius: var(--radius);
  box-shadow:
    inset 20px 0 0 -19px rgba(27, 167, 236, 0.68),
    inset -20px 0 0 -19px rgba(27, 167, 236, 0.4),
    inset 0 20px 0 -19px rgba(234, 247, 255, 0.2),
    inset 0 -20px 0 -19px rgba(27, 167, 236, 0.34);
}

.hero-visual:hover .visual-frame {
  border-color: rgba(27, 167, 236, 0.38);
  box-shadow: 0 38px 110px rgba(6, 24, 38, 0.38), 0 0 80px rgba(27, 167, 236, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.visual-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 40px;
  right: -110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 167, 236, 0.38), transparent 68%);
  filter: blur(2px);
  animation: glowDrift 8s ease-in-out infinite;
}

.blueprint-layer {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(27, 167, 236, 0.28);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(27, 167, 236, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 167, 236, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 34% 44%, rgba(234, 247, 255, 0.12) 0 1px, transparent 2px);
  background-size: 28px 28px, 28px 28px, 56px 56px;
}

.measurement-ruler {
  position: absolute;
  z-index: 1;
  opacity: 0.58;
  background:
    repeating-linear-gradient(90deg, rgba(234, 247, 255, 0.6) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(27, 167, 236, 0.6), transparent);
}

.ruler-top {
  top: 42px;
  left: 58px;
  right: 70px;
  height: 1px;
}

.ruler-left {
  top: 70px;
  bottom: 72px;
  left: 44px;
  width: 1px;
  background:
    repeating-linear-gradient(180deg, rgba(234, 247, 255, 0.6) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(27, 167, 236, 0.6), transparent);
}

.technical-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 167, 236, 0.9), transparent);
  animation: pulseLine 3.8s ease-in-out infinite;
}

.line-a {
  width: 70%;
  top: 24%;
  left: 12%;
}

.line-b {
  width: 58%;
  right: 8%;
  bottom: 26%;
  animation-delay: 0.8s;
}

.line-c {
  width: 42%;
  top: 56%;
  left: 5%;
  transform: rotate(90deg);
  animation-delay: 1.4s;
}

.technical-node {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--bright-blue);
  box-shadow: 0 0 0 8px rgba(27, 167, 236, 0.1), 0 0 24px rgba(27, 167, 236, 0.8);
  animation: nodeBlink 2.8s ease-in-out infinite;
}

.node-a {
  top: 24%;
  left: 26%;
}

.node-b {
  right: 22%;
  top: 48%;
  animation-delay: 0.6s;
}

.node-c {
  left: 34%;
  bottom: 25%;
  animation-delay: 1.2s;
}

.machine-plate {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(234, 247, 255, 0.16);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 13px),
    linear-gradient(145deg, rgba(234, 247, 255, 0.34), rgba(13, 61, 95, 0.22)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 -20px 36px rgba(6, 24, 38, 0.16), 0 18px 46px rgba(0, 0, 0, 0.22);
}

.plate-back {
  width: 56%;
  height: 32%;
  top: 18%;
  left: 15%;
  transform: skewY(-8deg) translateZ(20px);
}

.plate-front {
  width: 62%;
  height: 28%;
  right: 10%;
  bottom: 15%;
  transform: skewY(-7deg) translateZ(60px);
}

.machine-core {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.5), transparent 9%),
    radial-gradient(circle, rgba(234, 247, 255, 0.94) 0 17%, rgba(27, 167, 236, 0.92) 18% 35%, rgba(11, 45, 77, 0.92) 36% 58%, rgba(234, 247, 255, 0.16) 59% 62%, transparent 63%),
    conic-gradient(from 110deg, rgba(255, 255, 255, 0.26), rgba(27, 167, 236, 0.18), rgba(255, 255, 255, 0.28));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32), 0 0 60px rgba(27, 167, 236, 0.28), inset 0 2px 0 rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) translateZ(90px);
  animation: floatCore 6s ease-in-out infinite;
}

.core-ring,
.core-axis,
.core-cut {
  position: absolute;
  inset: 26px;
  border-radius: inherit;
  border: 1px solid rgba(234, 247, 255, 0.42);
}

.core-axis {
  inset: 46px;
  border-color: rgba(27, 167, 236, 0.45);
  animation: rotateSlow 16s linear infinite;
}

.core-axis::before,
.core-axis::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  right: -20px;
  height: 1px;
  background: rgba(234, 247, 255, 0.36);
}

.core-axis::after {
  transform: rotate(90deg);
}

.core-cut {
  inset: 86px;
  border: 0;
  background: radial-gradient(circle, rgba(6, 24, 38, 0.96), rgba(11, 45, 77, 0.88));
  box-shadow: inset 0 0 24px rgba(27, 167, 236, 0.34);
}

.spec-card,
.floating-tag,
.dimension-card {
  position: absolute;
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 24, 38, 0.68);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.spec-card {
  left: 34px;
  bottom: 34px;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 18px 18px 18px 46px;
  animation: float 5.4s ease-in-out infinite;
}

.spec-card small {
  color: rgba(234, 247, 255, 0.7);
}

.spec-dot {
  position: absolute;
  top: 21px;
  left: 18px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--bright-blue);
  box-shadow: 0 0 0 8px rgba(27, 167, 236, 0.14);
}

.floating-tag {
  padding: 10px 13px;
  font-size: 0.84rem;
  font-weight: 800;
  animation: float 6.4s ease-in-out infinite;
}

.dimension-card {
  display: grid;
  gap: 2px;
  min-width: 92px;
  padding: 12px 13px;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  animation: float 7s ease-in-out infinite;
}

.dimension-card span {
  color: var(--white);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.05rem;
}

.dimension-card small {
  color: rgba(234, 247, 255, 0.68);
  font-size: 0.72rem;
}

.dimension-card-one {
  top: 27%;
  left: 48%;
  animation-delay: 0.4s;
}

.dimension-card-two {
  right: 18%;
  bottom: 28%;
  animation-delay: 1.4s;
}

.tag-one {
  top: 82px;
  right: 46px;
}

.tag-two {
  right: 24px;
  top: 45%;
  animation-delay: 0.7s;
}

.tag-three {
  left: 42px;
  top: 42%;
  animation-delay: 1.1s;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding-bottom: 72px;
}

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

.trust-card,
.feature-card,
.service-card,
.process-card,
.counter-card,
.company-card,
.contact-form {
  border: 1px solid rgba(14, 107, 168, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.8)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 32px;
  min-height: 318px;
  overflow: hidden;
  border-color: rgba(14, 107, 168, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.92)),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 52px rgba(6, 24, 38, 0.14),
    0 10px 24px rgba(14, 107, 168, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.trust-card::before,
.feature-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(27, 167, 236, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity var(--transition);
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 167, 236, 0.35);
  box-shadow: var(--shadow-card), 0 0 44px rgba(27, 167, 236, 0.14);
}

.trust-card:hover::before,
.feature-card:hover::before,
.process-card:hover::before {
  opacity: 1;
}

.trust-icon,
.service-number,
.process-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--blue);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(27, 167, 236, 0.15), rgba(14, 107, 168, 0.06));
}

.trust-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
}

.trust-card .trust-icon {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--blue);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(145deg, rgba(27, 167, 236, 0.22), rgba(14, 107, 168, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(27, 167, 236, 0.1),
    0 12px 28px rgba(14, 107, 168, 0.12);
}

.trust-card .trust-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.trust-rule {
  display: block;
  width: 44px;
  height: 3px;
  margin: 18px 0 22px 88px;
  border-radius: 999px;
  background: var(--bright-blue);
  box-shadow: 0 4px 12px rgba(27, 167, 236, 0.28);
}

.trust-card p {
  margin: 0;
  color: #2d3848;
  font-size: 1rem;
  line-height: 1.62;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--deep-blue);
  font-weight: 700;
  background: rgba(234, 247, 255, 0.64);
}

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

.feature-card {
  position: relative;
  min-height: 204px;
  padding: 26px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 167, 236, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 247, 255, 0.72)),
    var(--white);
  box-shadow: var(--shadow-card), 0 0 42px rgba(27, 167, 236, 0.13);
}

.feature-card::after,
.service-card::after,
.quality-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--bright-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover::after,
.service-card:hover::after,
.quality-card:hover::after {
  transform: scaleX(1);
}

.feature-icon,
.quality-icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(27, 167, 236, 0.22), rgba(14, 107, 168, 0.06)),
    radial-gradient(circle at center, var(--bright-blue) 0 4px, transparent 5px);
}

.feature-card h3,
.service-card h3,
.process-card h3,
.quality-card h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.18rem;
}

.service-card h3 {
  margin-top: 0;
}

.process-card h3 {
  margin-top: 0;
}

.feature-card p,
.service-card p,
.process-card p,
.quality-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.company-card a {
  color: var(--deep-blue);
  font-weight: 800;
  transition: color var(--transition);
}

.company-card a:hover {
  color: var(--blue);
}

.services-section {
  background:
    linear-gradient(180deg, rgba(234, 247, 255, 0.42), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 12% 28%, rgba(27, 167, 236, 0.12), transparent 28rem);
}

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

.service-card {
  position: relative;
  min-height: 252px;
  padding: 28px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 167, 236, 0.18), transparent 70%);
  transition: transform var(--transition), opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-11px) scale(1.01);
  border-color: rgba(27, 167, 236, 0.38);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 76px rgba(14, 107, 168, 0.22), 0 0 54px rgba(27, 167, 236, 0.13);
}

.service-card:hover::before {
  opacity: 0.9;
  transform: scale(1.18);
}

.services-seo-note {
  margin-top: 22px;
  border: 1px solid rgba(14, 107, 168, 0.14);
  border-radius: var(--radius);
  padding: 20px 22px;
  background:
    linear-gradient(90deg, rgba(234, 247, 255, 0.82), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.services-seo-note p {
  color: #41556b;
  line-height: 1.75;
}

.production-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 24, 38, 0.035), rgba(27, 167, 236, 0.09)),
    #f8fcff;
}

.production-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 46px;
  margin-bottom: 28px;
}

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

.counter-card {
  padding: 22px 18px;
  text-align: center;
}

.counter-card strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
}

.counter-card span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 42px;
}

.capability-grid span {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--deep-blue);
  font-weight: 800;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.72);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-flow::before {
  display: none;
}

.process-card {
  position: relative;
  padding: 24px 20px;
  min-height: 246px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.process-card:hover {
  transform: translateY(-9px);
  border-color: rgba(27, 167, 236, 0.34);
  box-shadow: var(--shadow-card), 0 0 42px rgba(27, 167, 236, 0.12);
}

.quality-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(27, 167, 236, 0.3), transparent 28rem),
    linear-gradient(135deg, var(--navy), var(--deep-blue));
}

.quality-section .section-heading h2,
.quality-section .section-heading p {
  color: var(--white);
}

.quality-section .section-heading p {
  color: rgba(234, 247, 255, 0.72);
}

.quality-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quality-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.quality-card:hover {
  transform: translateY(-10px);
  border-color: rgba(27, 167, 236, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22), 0 0 54px rgba(27, 167, 236, 0.18);
}

.quality-card h3 {
  color: var(--white);
}

.quality-card p {
  color: rgba(234, 247, 255, 0.72);
}

.quality-icon {
  background:
    linear-gradient(135deg, rgba(27, 167, 236, 0.36), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at center, var(--bright-blue) 0 4px, transparent 5px);
}

.cta-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(27, 167, 236, 0.16), transparent 24rem),
    #f7fbff;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(27, 167, 236, 0.24);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 247, 255, 0.76)),
    var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cta-panel p {
  max-width: 740px;
}

.contact-section {
  background:
    radial-gradient(circle at 14% 10%, rgba(27, 167, 236, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 52%, #edf7fc 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1040px);
  justify-content: center;
}

.contact-info {
  text-align: center;
}

.contact-info > p:not(.section-kicker) {
  max-width: 760px;
  margin-inline: auto;
}

.contact-hub {
  position: relative;
  display: block;
  max-width: 1040px;
  margin: 34px auto 0;
  color: var(--text);
  font-style: normal;
  text-align: left;
}

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

.contact-channel {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 184px;
  align-content: start;
  padding: 26px;
  border: 1px solid rgba(14, 107, 168, 0.14);
  border-radius: var(--radius);
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.9)),
    radial-gradient(circle at 16% 0%, rgba(27, 167, 236, 0.18), transparent 15rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.contact-channel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-blue), rgba(27, 167, 236, 0));
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform var(--transition);
}

.contact-channel:hover,
.contact-channel.is-primary {
  border-color: rgba(27, 167, 236, 0.34);
  background:
    linear-gradient(180deg, #ffffff, #f6fbff),
    radial-gradient(circle at 16% 0%, rgba(27, 167, 236, 0.22), transparent 15rem);
  box-shadow: 0 22px 58px rgba(6, 24, 38, 0.14);
}

.contact-channel:hover {
  transform: translateY(-5px);
}

.contact-channel:hover::before,
.contact-channel.is-primary::before {
  transform: scaleX(1);
}

.contact-channel-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(27, 167, 236, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, var(--bright-blue) 0 6px, transparent 7px),
    linear-gradient(135deg, rgba(27, 167, 236, 0.12), rgba(14, 107, 168, 0.06));
  box-shadow: 0 16px 30px rgba(27, 167, 236, 0.14);
}

.contact-channel-label {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-channel strong {
  color: var(--navy);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.36;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--deep-blue);
  font-weight: 800;
  font-size: 0.94rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(14, 107, 168, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

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

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(27, 167, 236, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27, 167, 236, 0.14);
}

.form-submit {
  width: fit-content;
}

.form-success {
  border: 1px solid rgba(14, 107, 168, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--deep-blue);
  font-weight: 800;
  background: rgba(234, 247, 255, 0.82);
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(234, 247, 255, 0.78);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
  gap: 38px;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 18px;
  line-height: 1.75;
}

.site-footer .brand-logo-wrap {
  width: 82px;
  height: 70px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
}

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

.footer-links a,
.footer-links li {
  color: rgba(234, 247, 255, 0.72);
  line-height: 1.5;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--bright-blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 247, 255, 0.58);
}

.footer-bottom p {
  margin: 0;
}

.developer-credit {
  text-align: right;
}

.developer-credit a {
  color: rgba(234, 247, 255, 0.86);
  font-weight: 800;
  transition: color var(--transition);
}

.developer-credit a:hover {
  color: var(--bright-blue);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatCore {
  0%,
  100% {
    transform: translate(-50%, -50%) translateZ(90px);
  }
  50% {
    transform: translate(-50%, calc(-50% - 12px)) translateZ(90px);
  }
}

@keyframes scanline {
  0%,
  100% {
    opacity: 0.18;
    transform: translateY(-80px);
  }
  50% {
    opacity: 0.78;
    transform: translateY(260px);
  }
}

@keyframes glowDrift {
  0%,
  100% {
    opacity: 0.7;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.96;
    transform: translate3d(-34px, 30px, 0) scale(1.12);
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 52px;
  }

  .hero-slider-shell {
    margin-bottom: 64px;
  }

  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
    width: 100%;
  }

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

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

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

  .contact-channel-static {
    grid-column: 1 / -1;
  }

  .production-top {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    max-width: 520px;
  }

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

  .process-flow::before {
    display: none;
  }

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

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

  .navbar {
    gap: 18px;
  }

  .brand {
    --brand-logo-width: 64px;
    --brand-logo-height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(27, 167, 236, 0.22);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 247, 255, 0.94)),
      var(--white);
    box-shadow: 0 28px 90px rgba(6, 24, 38, 0.24);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

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

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-link,
  .site-header.is-scrolled .nav-link {
    color: var(--deep-blue);
    min-height: 48px;
    padding-inline: 14px;
  }

  .nav-link:hover,
  .nav-link.is-active,
  .site-header.is-scrolled .nav-link:hover,
  .site-header.is-scrolled .nav-link.is-active {
    color: var(--blue);
    background: rgba(14, 107, 168, 0.08);
  }

  .nav-cta {
    width: 100%;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    min-height: auto;
    padding-top: var(--header-height);
  }

  .hero-slider {
    min-height: clamp(500px, calc(100svh - var(--header-height)), 640px);
  }

  .hero-slide-content {
    width: min(590px, 100%);
  }
}

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

  .navbar {
    gap: 12px;
  }

  .brand {
    gap: 10px;
    --brand-logo-width: 60px;
    --brand-logo-height: 51px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 104px;
  }

  .hero-slider-shell {
    margin-bottom: 54px;
  }

  .hero-slider {
    min-height: clamp(520px, calc(100svh - var(--header-height)), 620px);
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(3, 17, 28, 0.12) 0%, rgba(3, 17, 28, 0.46) 38%, rgba(3, 17, 28, 0.94) 100%),
      linear-gradient(90deg, rgba(3, 17, 28, 0.78), rgba(3, 17, 28, 0.18));
  }

  .hero-slide {
    align-items: end;
  }

  .hero-slide img {
    object-position: 62% center;
  }

  .hero-slide-content {
    width: 100%;
    max-width: 340px;
    padding: 32px 22px 94px;
  }

  .slide-kicker {
    font-size: 0.72rem;
  }

  .hero-slide h2 {
    font-size: clamp(2.05rem, 11vw, 3.05rem);
    line-height: 1;
  }

  .hero-slide p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .slide-meta {
    display: grid;
    grid-template-columns: 1fr;
    width: min(230px, 100%);
    gap: 7px;
    margin-top: 22px;
  }

  .slide-meta span {
    justify-content: center;
    min-width: 0;
    min-height: 31px;
    padding-inline: 10px;
    font-size: 0.68rem;
    text-align: center;
  }

  .slide-meta span:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    min-width: 0;
  }

  .hero-slider-dots {
    left: 22px;
    right: 22px;
    bottom: 32px;
    gap: 7px;
  }

  .slider-dot {
    flex: 1;
    width: auto;
    min-width: 20px;
  }

  .slider-dot:hover,
  .slider-dot.is-active {
    width: auto;
  }

  .hero-slider-nav {
    display: none;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow span {
    font-size: 1.72rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
    line-height: 1;
  }

  .hero-status,
  .hero-proof {
    gap: 8px;
  }

  .hero-status span,
  .hero-proof span {
    font-size: 0.78rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions,
  .cta-panel {
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-panel .btn,
  .form-submit {
    width: 100%;
  }

  .contact-channel {
    min-height: auto;
  }

  .visual-frame {
    min-height: 430px;
    transform: none;
    border-color: rgba(255, 255, 255, 0.24);
  }

  .machine-core {
    width: 178px;
    height: 178px;
  }

  .spec-card {
    left: 18px;
    bottom: 18px;
    min-width: 184px;
    padding: 15px 14px 15px 42px;
  }

  .tag-one {
    top: 48px;
    right: 18px;
  }

  .tag-two {
    right: 12px;
    top: 44%;
  }

  .tag-three {
    left: 16px;
    top: 35%;
  }

  .dimension-card {
    min-width: 78px;
    padding: 9px 10px;
  }

  .dimension-card span {
    font-size: 0.92rem;
  }

  .dimension-card-one {
    top: 24%;
    left: 42%;
  }

  .dimension-card-two {
    right: 10%;
    bottom: 24%;
  }

  .ruler-top {
    left: 38px;
    right: 38px;
  }

  .ruler-left {
    left: 28px;
  }

  .trust-grid,
  .feature-grid,
  .services-grid,
  .quality-grid,
  .capability-grid,
  .process-flow,
  .contact-channel-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -36px;
  }

  .trust-card,
  .service-card,
  .quality-card,
  .process-card {
    min-height: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    text-align: left;
  }

  .developer-credit {
    text-align: left;
  }

  .service-card:hover,
  .trust-card:hover,
  .feature-card:hover,
  .process-card:hover,
  .quality-card:hover {
    transform: translateY(-5px);
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 380px) {
  .brand-name {
    display: none;
  }

  .brand {
    --brand-logo-width: 60px;
    --brand-logo-height: 51px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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