:root {
  --bg: #071425;
  --bg-soft: #0b1f3a;
  --surface: rgba(12, 28, 51, 0.72);
  --surface-strong: rgba(17, 35, 62, 0.94);
  --surface-muted: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --heading: #f6f8fb;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff7a00;
  --accent-soft: rgba(255, 122, 0, 0.18);
  --steel: #3a3f45;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --spacing-1: 8px;
  --spacing-2: 16px;
  --spacing-3: 24px;
  --spacing-4: 32px;
  --spacing-5: 40px;
  --spacing-6: 48px;
  --spacing-7: 56px;
  --spacing-8: 64px;
  --spacing-9: 72px;
  --spacing-10: 80px;
  --container: min(1280px, calc(100vw - 64px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(78, 130, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #09111f 0%, #071425 50%, #09101d 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.42;
  z-index: -1;
}

.page-shell::before {
  top: 120px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(255, 122, 0, 0.16);
}

.page-shell::after {
  right: -100px;
  bottom: 10%;
  width: 360px;
  height: 360px;
  background: rgba(66, 118, 210, 0.18);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-1);
  padding: 10px 16px;
  width: max-content;
  justify-self: start;
  border: 1px solid rgba(255, 122, 0, 0.24);
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.08);
  color: #ffb879;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.08;
  color: var(--heading);
}

h1 {
  font-size: clamp(48px, 6vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}

h3 {
  font-size: clamp(20px, 2.1vw, 28px);
}

h4 {
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn.is-disabled {
  opacity: 0.58;
  cursor: default;
  pointer-events: none;
}

.btn.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8b1f, #ff7a00);
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 22px 50px rgba(255, 122, 0, 0.4);
}

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

.btn-secondary:hover,
.btn-tertiary:hover {
  border-color: rgba(255, 122, 0, 0.4);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.site-header.is-scrolled .nav-shell {
  background:
    linear-gradient(135deg, rgba(10, 15, 23, 0.96), rgba(8, 12, 19, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 58px rgba(0, 0, 0, 0.34);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--spacing-4);
  width: 100%;
  min-height: 84px;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(17, 22, 31, 0.92), rgba(11, 15, 23, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.28);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 5px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.1;
}

.brand-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 20px;
}

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

.nav-link,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: 0;
  background: transparent;
}

.nav-link:hover,
.nav-link.is-active,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.nav-actions .btn {
  min-height: 52px;
  padding: 0 22px;
}

.nav-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-mega {
  position: relative;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle.is-open span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  left: auto;
  width: min(960px, calc(100vw - 48px));
  padding: var(--spacing-4);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 22, 31, 0.98), rgba(10, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: var(--spacing-3);
}

.mega-panel {
  padding: var(--spacing-3);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-panel img {
  aspect-ratio: 1.6 / 1;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-top: 18px;
}

.mega-panel h4,
.mega-column h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.mega-column a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-column a:hover {
  color: #fff;
}

.hero,
.subhero {
  position: relative;
  isolation: isolate;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-home {
  min-height: auto;
  display: block;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  z-index: 0;
}

.hero-home::before {
  top: 14%;
  right: 14%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.28), transparent 68%);
  animation: heroPulse 7s ease-in-out infinite;
}

.hero-home::after {
  left: 48%;
  bottom: 16%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(69, 123, 255, 0.18), transparent 70%);
  animation: heroPulse 9s ease-in-out infinite reverse;
}

.hero-media,
.subhero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img,
.subhero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-home .hero-media {
  background-image: url("../images/banner.jpeg");
  background-position: 62% 72%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  transform: translateZ(0);
}

.hero-overlay,
.subhero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.9) 4%, rgba(6, 15, 27, 0.7) 38%, rgba(6, 15, 27, 0.42) 68%, rgba(6, 15, 27, 0.76) 100%),
    linear-gradient(180deg, rgba(255, 122, 0, 0.08), transparent 55%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 72%);
  opacity: 0.9;
  animation: heroGridDrift 18s linear infinite;
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  width: var(--container);
  margin: 0 auto;
  padding-inline: 0;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
  grid-template-areas:
    "copy visual"
    "info info";
  justify-items: stretch;
  justify-content: stretch;
  align-content: start;
  align-items: start;
  gap: 0 28px;
  min-height: 0;
  padding-top: 120px;
  padding-bottom: 24px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  max-width: none;
  transform: translate3d(0, 0, 0);
  animation: heroRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-home h1 {
  max-width: 11.2ch;
  font-size: clamp(50px, 5.6vw, 82px);
  letter-spacing: -0.04em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.hero-home h1 span {
  background: linear-gradient(135deg, #ffffff 0%, #ffd0a0 58%, #ff9c38 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-home p {
  max-width: 62ch;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.hero-accent-bar {
  width: 136px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 122, 0, 0.18));
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.22);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 14px;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
}

.hero-text-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 180ms ease, transform 180ms ease;
}

.hero-text-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px -120%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 360ms ease;
}

.hero-actions .btn:hover::after {
  left: 150%;
}

.hero-copy-pro {
  grid-area: copy;
  min-height: 480px;
  justify-items: start;
  text-align: left;
  padding-top: 12px;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  width: 100%;
  align-self: start;
  justify-self: end;
  padding: 12px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(8, 18, 32, 0.72), rgba(8, 18, 32, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  transform: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 9px -8px -8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 122, 0, 0.14);
  pointer-events: none;
  z-index: -1;
}

.hero-visual-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 14, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.hero-visual-media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 24px;
  clip-path: none;
}

.hero-visual-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.03);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-visual-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-visual-foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hero-visual-spec {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.hero-visual-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
  transition: transform 180ms ease, background 180ms ease, width 180ms ease;
}

.hero-visual-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #ff8b1f, #ff7a00);
}

.hero-visual-spec span {
  color: #ffbf86;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-visual-spec strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

.hero-info-bar {
  grid-area: info;
  width: 100%;
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(280px, 1.18fr) minmax(240px, 0.96fr) 170px 170px;
  align-items: stretch;
  gap: 6px;
  padding: 6px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(8, 18, 32, 0.82), rgba(8, 18, 32, 0.56));
  animation: heroRise 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 90ms both;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.hero-info-item {
  min-height: 82px;
  border-radius: 16px;
}

.hero-info-item-main {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 122, 0, 0.02));
}

.hero-info-label {
  color: #ffbf86;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-info-item-main strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.12;
}

.hero-info-item p {
  margin: 0;
}

.hero-info-item:not(.hero-info-stat):not(.hero-info-item-main) {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-info-item:not(.hero-info-stat):not(.hero-info-item-main) p {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.hero-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-info-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 600;
}

.hero-info-stat {
  position: relative;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-info-stat::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.65), rgba(255, 122, 0, 0));
}

.hero-info-stat strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.hero-info-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.4;
}

.floating-label {
  display: inline-flex;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb879;
  margin-bottom: 12px;
}

.hero-spotlight {
  justify-self: end;
  align-self: center;
  width: min(400px, 100%);
  overflow: hidden;
  border-radius: 34px;
  position: relative;
  transform-style: preserve-3d;
  transform:
    rotateX(var(--spotlight-rotate-x, 0deg))
    rotateY(var(--spotlight-rotate-y, 0deg))
    translate3d(var(--spotlight-shift-x, 0px), var(--spotlight-shift-y, 0px), 0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: heroRise 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 90ms both;
  will-change: transform;
}

.hero-spotlight-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-spotlight-code {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(7, 14, 25, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.hero-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.18), transparent 32%);
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-spotlight::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-spotlight:hover {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.hero-spotlight-media {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  transform: translateZ(34px);
}

.hero-spotlight-media img {
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  transform: scale(1.05);
  animation: machineFloat 8s ease-in-out infinite;
}

.hero-spotlight-body {
  display: grid;
  gap: 14px;
  padding: 18px 20px 96px;
  position: relative;
  z-index: 1;
  transform: translateZ(26px);
}

.hero-spotlight-head {
  display: grid;
  gap: 6px;
}

.hero-spotlight-head strong,
.media-badge strong,
.fact-card strong,
.cert-card strong {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

.hero-spotlight-head strong,
.media-badge strong {
  font-size: 16px;
}

.hero-spotlight-head p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.hero-mini-card {
  position: absolute;
  left: -26px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: 160px;
  padding: 16px;
  border-radius: 24px;
}

.hero-mini-card strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.hero-mini-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.45;
}

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

.hero-spec {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-spec:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 0, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-spec span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-spec strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.hero-spotlight-footer {
  display: grid;
  gap: 14px;
}

.hero-support-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroPulse {
  0%, 100% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.12) translate3d(0, -10px, 0);
    opacity: 1;
  }
}

@keyframes heroGridDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-12px, 8px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes machineFloat {
  0%, 100% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.07) translate3d(0, -8px, 0);
  }
}

.subhero {
  min-height: 560px;
  display: flex;
  align-items: end;
}

.subhero-content {
  padding: 168px 0 80px;
  max-width: 760px;
}

.subhero h1 {
  margin-top: 20px;
}

.subhero p {
  margin-top: 24px;
  max-width: 680px;
  font-size: 18px;
}

body[data-page="about"] .subhero,
body[data-page="products"] .subhero,
body[data-page="contact"] .subhero {
  align-items: center;
}

body[data-page="about"] .subhero-content,
body[data-page="products"] .subhero-content,
body[data-page="contact"] .subhero-content {
  display: grid;
  gap: 16px;
  padding: 136px 0 88px;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  place-items: center;
}

body[data-page="about"] .subhero h1,
body[data-page="products"] .subhero h1,
body[data-page="contact"] .subhero h1 {
  margin-top: 4px;
  max-width: none;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body[data-page="about"] .subhero p,
body[data-page="products"] .subhero p,
body[data-page="contact"] .subhero p {
  margin-top: 4px;
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.75;
}

body[data-page="about"] .subhero .eyebrow,
body[data-page="products"] .subhero .eyebrow,
body[data-page="contact"] .subhero .eyebrow {
  margin-inline: auto;
}

.page-hero {
  min-height: 100vh;
}

.page-hero-content {
  display: grid;
  gap: 26px;
  width: var(--container);
  max-width: none;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 40px;
  align-items: end;
}

.page-hero-copy {
  display: grid;
  gap: 18px;
  align-content: end;
  max-width: 640px;
}

.page-hero-copy h1 {
  max-width: 11ch;
}

.page-hero-copy p {
  margin-top: 0;
  max-width: 34ch;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
}

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

.page-hero-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 30px;
  align-self: stretch;
}

.page-hero-card-media {
  min-height: 300px;
  overflow: hidden;
  border-radius: 22px;
}

.page-hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-card-body {
  display: grid;
  gap: 14px;
  padding: 4px 6px 8px;
}

.page-hero-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.22);
  color: #ffb879;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero-card h3 {
  font-size: 24px;
}

.page-hero-card p {
  margin: 0;
}

.page-hero-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-hero-list li {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-list strong {
  color: #fff;
  font-size: 14px;
}

.page-hero-list span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(8, 18, 32, 0.82), rgba(8, 18, 32, 0.56));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.page-hero-stat {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 110px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.page-hero-stat.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 122, 0, 0.03));
}

.page-hero-stat strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.page-hero-stat span {
  color: #ffbf86;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero-stat p {
  margin: 0;
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: start;
}

.media-stack {
  position: relative;
}

.media-frame,
.media-frame-large,
.media-frame-tall {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img,
.media-frame-large img,
.media-frame-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-large {
  min-height: 560px;
}

.media-frame-tall {
  min-height: 620px;
}

.badge-title {
  display: block;
  margin-bottom: 12px;
  color: #ffb879;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-panel {
  display: grid;
  gap: 20px;
  align-content: start;
}

.about-overview {
  align-items: center;
  gap: 48px;
}

.about-overview .content-panel {
  max-width: 640px;
}

.about-overview .stacked-facts {
  gap: 18px;
}

.about-overview .fact-card {
  min-height: 148px;
  align-content: center;
}

.about-presence {
  align-items: center;
  gap: 64px;
}

.about-presence .content-panel {
  max-width: 600px;
}

.about-presence .map-card {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.products-hero {
  min-height: 560px;
}

.products-selection {
  padding-top: 240px;
}

.products-selection .section-heading {
  margin-bottom: 32px;
}

.products-catalog .catalog-toolbar {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.products-catalog {
  padding-top: 32px;
}

.products-catalog .catalog-toolbar .eyebrow {
  justify-self: center;
}

.products-catalog .filter-row {
  justify-content: center;
}

body[data-page="contact"] .subhero {
  min-height: 560px;
}

.company-simple-section .container {
  display: grid;
  gap: 24px;
}

.company-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
}

.company-simple-media {
  position: relative;
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.company-simple-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease, transform 420ms ease;
  transform: scale(1.02);
}

.company-simple-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.company-simple-dots {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(8, 14, 24, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.company-simple-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  transition: transform 180ms ease, background 180ms ease;
}

.company-simple-dots span.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.company-simple-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.company-simple-copy h2 {
  max-width: 12ch;
}

.company-simple-copy h2,
.section-heading h2 {
  background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 72%, #ff9a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.company-simple-copy p {
  max-width: 42ch;
}

.company-simple-list {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.company-simple-item {
  display: grid;
  gap: 6px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-simple-item strong {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.company-simple-item span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

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

.company-simple-stat {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  align-content: start;
  gap: 12px 12px;
  min-height: 118px;
  padding: 24px;
  border-radius: 22px;
}

.company-simple-stat p {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.stat-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.stat-with-icon .stat-number,
.stat-with-icon .stat-suffix {
  align-self: baseline;
}

.stat-icon {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 122, 0, 0.9);
}

.stat-icon-years::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.stat-icon-years::after {
  width: 2px;
  height: 8px;
  border: 0;
  background: rgba(255, 122, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 0 rgba(255, 122, 0, 0.9);
}

.stat-icon-machines::before {
  width: 20px;
  height: 12px;
  border-radius: 4px;
  transform: translateY(-3px);
}

.stat-icon-machines::after {
  width: 18px;
  height: 2px;
  border: 0;
  background: rgba(255, 122, 0, 0.9);
  transform: translateY(9px);
  box-shadow: -8px 0 0 0 rgba(255, 122, 0, 0.9), 8px 0 0 0 rgba(255, 122, 0, 0.9);
}

.stat-icon-global::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.stat-icon-global::after {
  width: 20px;
  height: 8px;
  border-left: 0;
  border-right: 0;
  transform: rotate(90deg);
}

.stat-icon-support::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.stat-icon-support::after {
  width: 12px;
  height: 10px;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  transform: translateY(8px);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 760px;
  justify-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading .eyebrow {
  justify-self: center;
}

.stats-grid,
.feature-grid,
.product-grid,
.application-grid,
.service-grid,
.project-grid,
.team-grid,
.cert-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  align-content: start;
  gap: 4px 8px;
  position: relative;
  min-height: 140px;
  padding: 28px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(62, 72, 92, 0.18), transparent 70%);
  transition: transform 180ms ease, border-color 180ms ease;
}

.stat-card p {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.stat-card .stat-number,
.stat-card .stat-suffix {
  align-self: center;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18), transparent 68%);
}

.stat-number,
.stat-suffix {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(11, 25, 46, 0.96), rgba(9, 19, 34, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.product-image {
  overflow: hidden;
  aspect-ratio: 1.08 / 1;
  background: rgba(7, 15, 28, 0.88);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.product-image-placeholder {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(7, 15, 28, 0.08), rgba(7, 15, 28, 0.92)),
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.28), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 10px, rgba(255, 255, 255, 0.02) 10px 20px),
    linear-gradient(135deg, #14243a, #0a1321);
}

.product-image-placeholder::before {
  content: "RK650G";
  position: absolute;
  top: 22px;
  left: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 15, 28, 0.45);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-image-placeholder-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.16);
  color: #ffb168;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-image-placeholder strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.1;
}

.product-image-placeholder p {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 16px;
  padding: 26px 24px 24px;
}

.product-body p {
  margin: 0;
  line-height: 1.7;
}

.product-models {
  display: grid;
  gap: 10px;
}

.product-models-label,
.product-card-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  color: #ffb469;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.product-body .btn {
  width: 100%;
  justify-content: center;
}

.product-body h3 {
  margin: 0;
}

.product-card-model .product-image {
  aspect-ratio: 1 / 1;
}

.product-card-model .product-body {
  gap: 14px;
}

.product-body h3,
.feature-card h3,
.team-card h3 {
  font-size: 22px;
  line-height: 1.18;
}

.service-card h2,
.project-content h2 {
  font-size: 24px;
  line-height: 1.18;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.feature-heading {
  max-width: 720px;
}

.why-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(13, 26, 46, 0.92), rgba(7, 14, 25, 0.98));
}

.why-stage::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.22), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.why-stage-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  z-index: 1;
}

.why-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 420ms ease;
}

.why-stage:hover .why-stage-media img {
  transform: scale(1.07);
}

.why-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 25, 0.08), rgba(7, 14, 25, 0.22) 42%, rgba(7, 14, 25, 0.74) 100%),
    linear-gradient(90deg, rgba(7, 14, 25, 0.12), rgba(7, 14, 25, 0.04) 54%, rgba(255, 122, 0, 0.14));
}

.why-stage-panel {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 360px;
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(7, 14, 25, 0.5), rgba(7, 14, 25, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.why-stage-panel h3 {
  max-width: none;
  font-size: 22px;
  line-height: 1.04;
  white-space: nowrap;
}

.why-stage-panel p {
  margin: 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.55;
}

.why-stage-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.why-stage-metric {
  display: grid;
  gap: 3px;
  align-content: center;
  min-height: 76px;
  padding: 10px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-stage-metric strong {
  font-size: 20px;
  line-height: 1;
  color: #fff;
}

.why-stage-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.why-stage-rail {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 40px 32px 40px 42px;
  z-index: 1;
}

.why-stage-rail::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 38px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 122, 0, 0), rgba(255, 122, 0, 0.38), rgba(255, 122, 0, 0));
}

.why-stage-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 24px 24px 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(18, 31, 52, 0.22), rgba(255, 122, 0, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.why-stage-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 122, 0, 0), rgba(255, 122, 0, 0.5), rgba(255, 122, 0, 0));
  opacity: 0.8;
}

.why-stage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.24);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.why-stage-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(66, 118, 210, 0.08));
}

.why-stage-card-shift {
  margin-left: 0;
}

.why-stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(66, 118, 210, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffb879;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.why-stage-copy {
  display: grid;
  gap: 10px;
}

.why-stage-copy h3 {
  font-size: 23px;
  line-height: 1.14;
}

.why-stage-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

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

.feature-card,
.service-card,
.team-card,
.cert-card,
.fact-card,
.info-card {
  display: grid;
  align-content: start;
  gap: 14px;
  height: 100%;
  padding: 28px;
  border-radius: 24px;
}

.feature-card {
  gap: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.1), transparent 68%);
  pointer-events: none;
}

.feature-card:hover,
.service-card:hover,
.team-card:hover,
.cert-card:hover,
.fact-card:hover,
.info-card:hover,
.project-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.24);
}

.feature-card-featured {
  grid-column: span 1;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(66, 118, 210, 0.08) 62%, transparent);
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.feature-tag,
.feature-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 0, 0.2);
  background: rgba(255, 122, 0, 0.08);
  color: #ffb879;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: max-content;
}

.feature-card-featured h3 {
  font-size: 28px;
}

.feature-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.icon-chip {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(66, 118, 210, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-lines {
  position: relative;
  width: 24px;
  height: 24px;
}

.icon-lines::before,
.icon-lines::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  inset: 0;
}

.icon-hydraulic::before {
  border-radius: 8px 8px 2px 2px;
}

.icon-hydraulic::after {
  inset: 6px 4px 4px 12px;
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.icon-standard::before {
  transform: rotate(45deg);
  border-radius: 4px;
}

.icon-standard::after {
  inset: 8px;
  border-radius: 50%;
}

.icon-efficiency::before {
  inset: 2px 8px;
  border-top: 0;
  border-bottom: 0;
}

.icon-efficiency::after {
  inset: 8px 2px;
  border-left: 0;
  border-right: 0;
}

.icon-support::before {
  border-radius: 50%;
}

.icon-support::after {
  inset: 8px 4px 4px;
  border-radius: 8px 8px 12px 12px;
}

.icon-installation::before,
.icon-maintenance::before,
.icon-parts::before {
  border-radius: 6px;
}

.icon-installation::after {
  inset: 5px 10px;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
}

.icon-maintenance::after {
  inset: 7px;
  border-radius: 50%;
}

.icon-parts::after {
  inset: 8px 3px 3px 8px;
}

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

.gallery-grid .gallery-item {
  grid-column: span 4;
}

.masonry-grid .gallery-item.tall {
  grid-row: span 2;
}

.masonry-grid .gallery-item.wide,
.gallery-grid .gallery-item.wide {
  grid-column: span 8;
}

.gallery-grid .gallery-item-full {
  grid-column: 1 / -1;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  background: #0b1728;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 29, 0.02), rgba(8, 16, 29, 0.08) 42%, rgba(8, 16, 29, 0.3)),
    linear-gradient(120deg, rgba(255, 122, 0, 0.03), transparent 38%, transparent 72%, rgba(255, 122, 0, 0.06));
  z-index: 1;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.22);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.28);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

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

.application-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 12, 22, 0.92));
}

.application-card img {
  height: 100%;
  object-fit: cover;
}

.application-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.9), rgba(255, 122, 0, 0.4)),
    linear-gradient(135deg, rgba(11, 31, 58, 0.9), rgba(58, 63, 69, 0.75));
  box-shadow: var(--shadow);
}

.cta-banner p,
.cta-banner h2 {
  color: #fff;
}

.stacked-facts {
  display: grid;
  gap: 20px;
  align-content: start;
}

.fact-card strong {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
}

.map-card {
  padding: 28px;
  border-radius: 28px;
}

.map-surface {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 122, 0, 0.16), transparent 18%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(135deg, rgba(58, 63, 69, 0.92), rgba(11, 31, 58, 0.98));
}

.map-surface::before {
  content: "";
  position: absolute;
  inset: 14% 10%;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  opacity: 0.8;
}

.map-marker {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.16);
  border: 1px solid rgba(255, 122, 0, 0.32);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-marker-a { top: 36%; left: 58%; }
.map-marker-b { top: 58%; left: 49%; }
.map-marker-c { top: 30%; left: 72%; }
.map-marker-d { top: 22%; left: 48%; }
.map-marker-e { top: 62%; left: 20%; }

.catalog-toolbar {
  padding: 24px;
  border-radius: 28px;
  margin-bottom: 32px;
}

.catalog-toolbar p {
  margin: 10px 0 0;
  max-width: 760px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.filter-chip {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.filter-chip.is-active {
  color: #fff;
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.14);
}

.catalog-grid .product-card.is-hidden {
  display: none;
}

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

.detail-stack {
  display: grid;
  gap: 32px;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  padding: 24px;
  border-radius: 28px;
  align-items: start;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.slider-track {
  position: relative;
  min-height: 420px;
}

.slider-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.slider-track img.is-active {
  opacity: 1;
}

.slider-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
}

.slider-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 21, 36, 0.72);
  color: #fff;
}

.detail-content {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 12px 8px;
}

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

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  display: grid;
  gap: 10px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.spec-table th {
  color: #fff;
  font-weight: 700;
}

.quote-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
}

.compact-form,
.contact-form,
.form-grid {
  display: grid;
  gap: 16px;
}

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

.contact-form input,
.contact-form textarea,
.compact-form input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.compact-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.14);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

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

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.project-content {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.project-kicker,
.team-role {
  color: #ffb879;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.map-embed {
  border-radius: 28px;
  padding: 28px;
}

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

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

.contact-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.contact-stage {
  align-items: start;
  gap: 36px;
}

.contact-stage .contact-card {
  min-height: 100%;
}

.contact-stage .contact-sidebar {
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.contact-stage .info-card {
  min-height: 0;
}

.contact-outro {
  display: grid;
}

.contact-outro .quote-panel {
  max-width: 1040px;
  width: 100%;
  margin-inline: auto;
}

.map-embed {
  overflow: hidden;
  min-height: 320px;
  padding: 0;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.85);
}

.site-footer {
  padding: 48px 0 32px;
}

.footer-shell {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 32px 32px 0 0;
  background: rgba(8, 15, 28, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 0.78fr));
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 18px;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
}

.compact-form .btn {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #0ca85a);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 22px 50px rgba(37, 211, 102, 0.28);
}

.whatsapp-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
}

.whatsapp-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -3px;
  width: 7px;
  height: 7px;
  background: inherit;
  border-left: 2px solid rgba(255, 255, 255, 0.96);
  border-bottom: 2px solid rgba(255, 255, 255, 0.96);
  transform: rotate(-35deg);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 7, 14, 0.84);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border-radius: 28px;
  background: rgba(7, 18, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.lightbox-dialog img {
  max-height: calc(100vh - 140px);
  object-fit: contain;
  background: #040b14;
}

.lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
}

.lightbox-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

@media (max-width: 1160px) {
  .product-grid,
  .feature-grid,
  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-stage {
    grid-template-columns: 1fr;
  }

  .why-stage-media {
    min-height: 420px;
  }

  .why-stage-rail {
    padding: 32px;
  }

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

  .hero-content,
  .company-simple-grid,
  .split-section,
  .product-detail,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-areas:
      "copy"
      "visual"
      "info";
    gap: 32px;
    padding-top: 148px;
    padding-bottom: 80px;
  }

  .hero-copy,
  .hero-visual,
  .hero-info-bar {
    justify-self: stretch;
  }

  .hero-visual {
    width: 100%;
    transform: none;
  }

  .hero-visual-media {
    min-height: 320px;
  }

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

  .quote-panel,
  .compact-form {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 920px) {
  :root {
    --container: min(1200px, calc(100vw - 32px));
  }

  .hero-home .hero-media {
    background-attachment: scroll;
  }

  .hero-home h1 {
    max-width: 11ch;
  }

  .hero-info-bar {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-info-item-main,
  .hero-info-item:not(.hero-info-stat):not(.hero-info-item-main) {
    grid-column: 1 / -1;
  }

  .hero-info-item:not(.hero-info-stat):not(.hero-info-item-main) {
    min-height: 0;
  }

  .hero-visual-foot {
    grid-template-columns: 1fr 1fr;
  }

  .nav-row {
    position: fixed;
    top: 104px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(8, 16, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-scrolled .nav-row {
    top: 92px;
  }

  .page-hero-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    max-width: none;
  }

  .page-hero-copy p {
    max-width: none;
  }

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

  .nav-row.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links,
  .nav-actions {
    display: grid;
    gap: 8px;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 8px;
    padding: 16px;
    display: none;
  }

  .mega-menu.is-open {
    display: block;
  }

  .gallery-grid,
  .project-grid,
  .service-grid,
  .team-grid,
  .cert-grid,
  .stats-grid,
  .company-simple-stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-item.wide,
  .masonry-grid .gallery-item.wide {
    grid-column: auto;
  }

  .gallery-grid .gallery-item-full {
    grid-column: auto;
  }

  .masonry-grid .gallery-item.tall {
    grid-row: auto;
  }

  .detail-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-content {
    padding-top: 148px;
    padding-bottom: 72px;
    gap: 24px;
  }

  .subhero-content {
    padding-top: 148px;
    padding-bottom: 64px;
  }

  body[data-page="about"] .subhero-content {
    padding-top: 136px;
    padding-bottom: 72px;
    max-width: 640px;
  }

  body[data-page="about"] .subhero h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  body[data-page="about"] .subhero p {
    max-width: 32ch;
    font-size: 16px;
  }

  body[data-page="products"] .subhero-content,
  body[data-page="contact"] .subhero-content {
    padding-top: 136px;
    padding-bottom: 72px;
    max-width: 640px;
  }

  body[data-page="products"] .subhero h1,
  body[data-page="contact"] .subhero h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  body[data-page="products"] .subhero p,
  body[data-page="contact"] .subhero p {
    max-width: 32ch;
    font-size: 16px;
  }

  .page-hero-stats {
    grid-template-columns: 1fr;
  }

  .page-hero-card {
    padding: 14px;
    border-radius: 28px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-lead {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

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

  .hero-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-info-bar {
    gap: 14px;
    padding: 14px;
    border-radius: 28px;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 14px;
    border-radius: 28px;
  }

  .hero-visual-media {
    min-height: 260px;
  }

  .hero-visual-foot {
    grid-template-columns: 1fr;
  }

  .hero-info-item,
  .hero-info-stat {
    min-height: 0;
  }

  .hero-info-item-main strong {
    font-size: 20px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-shell,
  .footer-shell,
  .cta-banner,
  .contact-card,
  .map-card,
  .map-embed,
  .quote-panel,
  .product-detail {
    padding: 20px;
  }

  .brand-mark img {
    width: 180px;
  }

  .media-frame-large {
    min-height: 380px;
  }

  .company-simple-media {
    min-height: 300px;
  }

  .company-simple-copy h2,
  .company-simple-copy p {
    max-width: none;
  }

  .application-grid,
  .product-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .why-stage-panel {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
    gap: 12px;
    padding: 20px;
  }

  .why-stage-rail {
    padding: 24px 20px 24px 22px;
  }

  .why-stage-rail::before {
    display: none;
  }

  .why-stage-card,
  .why-stage-card-shift {
    margin-left: 0;
  }

  .why-stage-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .why-stage-panel h3 {
    max-width: none;
    font-size: 22px;
    white-space: normal;
  }

  .why-stage-metrics {
    grid-template-columns: 1fr;
  }

  .why-stage-metric {
    min-height: 0;
  }

  .why-stage-number {
    width: 48px;
    height: 48px;
  }

  .application-card {
    min-height: 300px;
  }

  .cta-banner,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home::before,
  .hero-home::after,
  .hero-grid,
  .hero-copy,
  .hero-spotlight,
  .hero-spotlight-media img {
    animation: none;
  }

  .hero-spotlight,
  .hero-metric,
  .hero-spec,
  .hero-points span,
  .hero-actions .btn::after {
    transition: none;
  }
}

.pdf-catalog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 28px;
}

.pdf-catalog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.pdf-catalog-shell {
  padding-top: 72px;
}

.pdf-catalog-note {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 20px;
}

.pdf-catalog-note strong,
.pdf-spec-table-head strong,
.model-detail-media-meta strong,
.model-detail-nav-link strong,
.pdf-quick-spec strong,
.pdf-detail-stat strong,
.pdf-spec-row strong {
  color: var(--heading);
}

.pdf-catalog-grid {
  margin-top: 28px;
}

.pdf-model-card {
  overflow: hidden;
}

.pdf-model-image {
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.03);
}

.pdf-model-image img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.pdf-quick-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.pdf-quick-spec,
.pdf-detail-stat {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pdf-quick-spec span,
.pdf-detail-stat span,
.model-detail-media-meta span,
.model-detail-nav-link span,
.pdf-spec-row span,
.pdf-spec-table-head span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdf-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.model-detail-page {
  padding-top: 150px;
}

.model-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}

.model-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.model-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.model-detail-media {
  overflow: hidden;
  border-radius: 28px;
}

.model-detail-media img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.model-detail-media-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 22px;
}

.model-detail-stack {
  display: grid;
  gap: 18px;
}

.model-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.model-detail-note {
  padding: 20px 22px;
  border-radius: 22px;
}

.model-detail-note p {
  margin-top: 10px;
}

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

.pdf-spec-table {
  padding: 22px;
  border-radius: 24px;
}

.pdf-spec-table-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pdf-spec-table-body {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.pdf-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pdf-spec-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pdf-spec-row strong {
  text-align: right;
}

.model-detail-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.model-detail-nav-link {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border-radius: 22px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.model-detail-nav-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.32);
}

.model-detail-nav-link.is-disabled {
  opacity: 0.58;
}

@media (max-width: 1024px) {
  .pdf-catalog-cta,
  .model-detail-layout {
    grid-template-columns: 1fr;
  }

  .model-detail-head {
    align-items: start;
    flex-direction: column;
  }

  .model-detail-links,
  .pdf-catalog-cta-actions {
    justify-content: flex-start;
  }

  .model-detail-table-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .pdf-quick-specs,
  .model-detail-stats,
  .model-detail-nav {
    grid-template-columns: 1fr;
  }

  .pdf-catalog-cta,
  .pdf-spec-table,
  .model-detail-note,
  .model-detail-nav-link {
    padding: 20px;
  }

  .pdf-spec-row,
  .pdf-spec-table-head,
  .model-detail-media-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

.rk-model-page {
  padding-top: 132px;
}

.rk-model-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: center;
}

.rk-model-theme-mini {
  --rk-accent: #ff9b4b;
  --rk-accent-soft: rgba(255, 155, 75, 0.2);
}

.rk-model-theme-wheel {
  --rk-accent: #57c8ff;
  --rk-accent-soft: rgba(87, 200, 255, 0.18);
}

.rk-model-theme-track {
  --rk-accent: #ffc24b;
  --rk-accent-soft: rgba(255, 194, 75, 0.18);
}

.rk-model-stage {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 18%, var(--rk-accent-soft, rgba(255, 122, 0, 0.2)), transparent 22%),
    radial-gradient(circle at 78% 16%, rgba(94, 145, 255, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(13, 24, 42, 0.98), rgba(6, 12, 22, 0.94));
  perspective: 1400px;
}

.rk-model-stage-grid,
.rk-model-stage-glow,
.rk-model-stage-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rk-model-stage-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
  opacity: 0.38;
}

.rk-model-stage-glow {
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 52% 54%, var(--rk-accent-soft, rgba(255, 122, 0, 0.16)), transparent 34%);
}

.rk-model-stage-scan {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 100%);
  opacity: 0.28;
  transform: translateY(-120%);
  animation: rkStageScan 6s linear infinite;
}

.rk-model-stage::after {
  content: "";
  position: absolute;
  inset: auto 10% 28px;
  height: 76px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.34), transparent 70%);
  filter: blur(10px);
}

.rk-model-stage .slider,
.rk-model-stage .slider-track {
  min-height: 576px;
  background: transparent;
}

.rk-model-slider-track img {
  object-fit: contain;
  padding: 18px;
  transform: translateZ(0) scale(0.98);
}

.rk-model-slider-track img.is-active {
  animation: rkFloatIn 420ms ease;
}

.rk-model-stage-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.rk-model-stage-orbit-a {
  inset: 7% 18% 16%;
  transform: rotate(11deg);
}

.rk-model-stage-orbit-b {
  inset: 16% 10% 8%;
  border-style: dashed;
  opacity: 0.42;
  transform: rotate(-9deg);
}

.rk-model-stage-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rk-model-stage-panel {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(7, 15, 27, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.rk-model-stage-panel span,
.rk-model-overline,
.rk-model-theme-note span,
.rk-capability-title span,
.rk-capability-head span,
.rk-mission-card span {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rk-model-stage-panel strong {
  color: var(--heading);
  font-size: 16px;
}

.rk-model-stage-panel-top {
  top: 26px;
  right: 26px;
  max-width: 220px;
}

.rk-model-stage-panel-bottom {
  left: 26px;
  bottom: 26px;
}

.rk-stage-flag {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(6, 13, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.rk-stage-flag span,
.rk-signal-title span,
.rk-signal-item span {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rk-stage-flag strong,
.rk-signal-title strong,
.rk-signal-item strong {
  color: var(--heading);
  font-size: 15px;
}

.rk-stage-flag-1 {
  top: 112px;
  right: 34px;
}

.rk-stage-flag-2 {
  top: 214px;
  left: 28px;
}

.rk-stage-flag-3 {
  right: 42px;
  bottom: 118px;
}

.rk-stage-thumb-row {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 10px;
  width: min(86%, 460px);
  transform: translateX(-50%);
}

.rk-stage-thumb {
  flex: 1 1 0;
  min-height: 64px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.68;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.rk-stage-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rk-stage-thumb:hover,
.rk-stage-thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--rk-accent, #ff9b4b);
}

.rk-model-copy {
  display: grid;
  gap: 18px;
}

.rk-model-overline {
  color: var(--rk-accent, #ff9b4b);
}

.rk-model-copy h1 {
  font-size: clamp(42px, 5vw, 64px);
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.rk-model-headline {
  color: var(--heading);
  font-size: 21px;
  line-height: 1.5;
  max-width: 24ch;
}

.rk-model-theme-note {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.08);
}

.rk-model-theme-note span {
  color: var(--rk-accent, #ff9b4b);
}

.rk-model-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rk-model-chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--heading);
  font-size: 13px;
  font-weight: 600;
}

.rk-model-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rk-model-stat {
  padding: 18px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    linear-gradient(120deg, var(--rk-accent-soft, rgba(255, 122, 0, 0.08)), transparent 65%);
}

.rk-model-stat span,
.rk-source-card span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rk-model-stat strong,
.rk-source-card strong {
  display: block;
  margin-top: 10px;
  color: var(--heading);
  font-size: 22px;
  line-height: 1.3;
}

.rk-model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.rk-signal-rail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, var(--rk-accent-soft, rgba(255, 122, 0, 0.14)), transparent 28%);
}

.rk-signal-title {
  display: grid;
  gap: 6px;
  min-width: 220px;
}

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

.rk-signal-item {
  display: grid;
  gap: 8px;
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rk-experience-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  margin-top: 34px;
}

.rk-specs-shell {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.rk-source-card {
  display: grid;
  gap: 12px;
  padding: 24px 26px;
  border-radius: 26px;
}

.rk-source-card p {
  max-width: 72ch;
}

.rk-source-card .btn {
  width: max-content;
}

.rk-capability-panel {
  display: grid;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 26px;
}

.rk-capability-title {
  display: grid;
  gap: 8px;
}

.rk-capability-title span,
.rk-capability-head span,
.rk-mission-card span {
  color: var(--rk-accent, #ff9b4b);
}

.rk-capability-title strong {
  color: var(--heading);
  font-size: 24px;
  line-height: 1.3;
}

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

.rk-capability-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rk-capability-head {
  display: grid;
  gap: 8px;
}

.rk-capability-head strong {
  color: var(--heading);
  font-size: 22px;
}

.rk-capability-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rk-capability-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rk-accent, #ff9b4b), #ffffff);
  box-shadow: 0 8px 20px var(--rk-accent-soft, rgba(255, 122, 0, 0.18));
}

.rk-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.rk-mission-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, var(--rk-accent-soft, rgba(255, 122, 0, 0.14)), transparent 34%);
}

.rk-mission-card strong {
  color: var(--heading);
  font-size: 24px;
  line-height: 1.24;
}

.rk-gallery-section {
  margin-top: 40px;
}

.rk-gallery-grid {
  margin-top: 22px;
}

.rk-gallery-grid .gallery-item {
  min-height: 240px;
}

@keyframes rkFloatIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(0.98);
  }
}

@keyframes rkStageScan {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(120%);
  }
}

@media (max-width: 1080px) {
  .rk-model-hero {
    grid-template-columns: 1fr;
  }

  .rk-signal-rail {
    grid-template-columns: 1fr;
  }

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

  .rk-experience-band,
  .rk-mission-grid {
    grid-template-columns: 1fr;
  }

  .rk-model-stage {
    min-height: 520px;
  }

  .rk-model-stage .slider,
  .rk-model-stage .slider-track {
    min-height: 476px;
  }

  .rk-stage-flag-1,
  .rk-stage-flag-2,
  .rk-stage-flag-3 {
    display: none;
  }
}

@media (max-width: 720px) {
  .rk-model-page {
    padding-top: 118px;
  }

  .rk-model-stage {
    min-height: 420px;
    padding: 16px;
  }

  .rk-model-stage .slider,
  .rk-model-stage .slider-track {
    min-height: 388px;
  }

  .rk-signal-grid {
    grid-template-columns: 1fr;
  }

  .rk-stage-thumb-row {
    position: static;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 14px;
    transform: none;
  }

  .rk-model-stage-panel-top,
  .rk-model-stage-panel-bottom {
    position: static;
    margin-top: 12px;
  }

  .rk-model-stat-grid {
    grid-template-columns: 1fr;
  }

  .rk-capability-grid {
    grid-template-columns: 1fr;
  }

  .rk-source-card {
    padding: 20px;
  }
}

.rk-model-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 36px;
}

.rk-model-stage {
  min-height: 0;
  background:
    radial-gradient(circle at 16% 18%, var(--rk-accent-soft, rgba(255, 122, 0, 0.24)), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(94, 145, 255, 0.2), transparent 24%),
    linear-gradient(145deg, rgba(13, 24, 42, 0.98), rgba(4, 10, 20, 0.98));
}

.rk-model-watermark {
  position: absolute;
  left: 24px;
  bottom: 28px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.05);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(58px, 9vw, 116px);
  font-weight: 800;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.rk-model-stage::after {
  inset: auto 10% 42px;
  height: 96px;
}

.rk-model-stage .slider,
.rk-model-stage .slider-track {
  min-height: 0;
  height: 100%;
}

.rk-model-stage .slider {
  aspect-ratio: 1 / 0.86;
}

.rk-model-slider-track img {
  object-position: center center;
  padding: 8px 10px 18px;
  transform: translateZ(0) scale(0.96);
}

.rk-stage-flag-1 {
  top: 96px;
  left: 26px;
}

.rk-stage-flag-2 {
  display: none;
}

.rk-model-stage-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 14px;
  align-items: stretch;
  padding-top: 54px;
}

.rk-stage-thumb-stack {
  display: grid;
  gap: 8px;
  align-content: start;
}

.rk-stage-thumb {
  width: 100%;
  min-height: 72px;
}

.rk-stage-thumb:hover,
.rk-stage-thumb.is-active {
  transform: translateX(-4px) scale(1.01);
}

.rk-model-copy {
  gap: 22px;
}

.rk-model-copy-top {
  display: grid;
  gap: 14px;
}

.rk-model-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.rk-model-breadcrumbs a,
.rk-model-breadcrumbs span {
  display: inline-flex;
  align-items: center;
}

.rk-model-breadcrumbs a {
  color: rgba(255, 255, 255, 0.74);
}

.rk-model-breadcrumbs a::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.rk-model-breadcrumbs span {
  color: var(--heading);
}

.rk-model-headline {
  font-size: 24px;
  line-height: 1.42;
  max-width: 22ch;
}

.rk-model-copy-text {
  max-width: 56ch;
}

.rk-model-copy-callout {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, var(--rk-accent-soft, rgba(255, 122, 0, 0.16)), transparent 32%);
}

.rk-model-copy-callout span {
  color: var(--rk-accent, #ff9b4b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rk-stat-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rk-command-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  margin-top: 24px;
}

.rk-command-card,
.rk-spec-panel {
  display: grid;
  gap: 12px;
  padding: 24px 26px;
  border-radius: 26px;
}

.rk-spec-cockpit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.rk-spec-panel {
  align-content: start;
}

.rk-spec-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rk-spec-panel-head span,
.rk-spec-card span {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rk-spec-panel-head strong,
.rk-spec-card strong {
  color: var(--heading);
}

.rk-spec-panel-head strong {
  font-size: 20px;
}

.rk-spec-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.rk-spec-card {
  display: grid;
  gap: 10px;
  min-height: 110px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, var(--rk-accent-soft, rgba(255, 122, 0, 0.14)), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rk-spec-card strong {
  font-size: 24px;
  line-height: 1.2;
}

.rk-gallery-section {
  margin-top: 44px;
}

.rk-gallery-grid {
  grid-auto-rows: 230px;
}

.rk-gallery-grid .gallery-item {
  min-height: 260px;
}

@media (max-width: 1080px) {
  .rk-model-hero,
  .rk-model-stage-shell,
  .rk-command-strip,
  .rk-spec-cockpit,
  .rk-signal-rail {
    grid-template-columns: 1fr;
  }

  .rk-model-stage .slider,
  .rk-model-stage .slider-track {
    min-height: 476px;
  }

  .rk-stage-flag-1,
  .rk-stage-flag-2 {
    display: none;
  }

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

@media (max-width: 720px) {
  .rk-stage-thumb-stack,
  .rk-signal-grid,
  .rk-spec-card-grid,
  .rk-stat-band {
    grid-template-columns: 1fr;
  }
}

.rk-model-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 12%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #050b16 0%, #091426 54%, #060c17 100%);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.rk-model-hero {
  gap: 48px;
  align-items: start;
}

.rk-model-stage,
.rk-command-card,
.rk-spec-panel,
.model-detail-nav-link {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.rk-model-stage {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    radial-gradient(circle at 16% 18%, var(--rk-accent-soft, rgba(255, 122, 0, 0.24)), transparent 22%),
    linear-gradient(145deg, rgba(8, 14, 26, 0.99), rgba(4, 8, 18, 0.99));
}

.rk-model-stage::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--rk-accent, #ff9b4b), transparent);
}

.rk-model-watermark {
  color: rgba(255, 255, 255, 0.04);
  font-size: clamp(66px, 11vw, 150px);
  line-height: 0.9;
}

.rk-model-stage .slider {
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(11, 18, 31, 0.96), rgba(7, 12, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rk-model-stage .slider-controls {
  left: 16px;
  right: auto;
  bottom: 16px;
  z-index: 4;
}

.rk-model-stage .slider-btn,
.rk-model-actions .btn,
.rk-source-card .btn {
  border-radius: 14px;
}

.rk-model-slider-track img {
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.36));
}

.rk-model-stage-panel,
.rk-stage-flag {
  border-radius: 16px;
  background: rgba(6, 11, 20, 0.84);
}

.rk-stage-flag-primary {
  display: none;
}

.rk-stage-thumb-stack {
  align-content: start;
}

.rk-stage-thumb {
  min-height: 72px;
  border-radius: 12px;
  opacity: 0.5;
}

.rk-stage-thumb:hover,
.rk-stage-thumb.is-active {
  transform: translateX(-4px) scale(1.01);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.rk-model-stage-panel-bottom {
  display: none;
}

.rk-model-copy {
  gap: 26px;
}

.rk-model-overline {
  font-size: 12px;
  letter-spacing: 0.18em;
}

.rk-model-copy h1 {
  font-size: clamp(46px, 5.8vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.rk-model-headline {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.22;
  max-width: 17ch;
}

.rk-model-copy-text {
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.72;
}

.rk-model-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rk-model-meta-chip {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, var(--rk-accent-soft, rgba(255, 122, 0, 0.12)), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rk-model-meta-chip span,
.rk-model-meta-chip strong {
  color: var(--heading);
}

.rk-model-meta-chip span {
  opacity: 0.72;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rk-model-meta-chip strong {
  font-size: 17px;
  line-height: 1.2;
}

.rk-model-copy-callout {
  border-left: 4px solid var(--rk-accent, #ff9b4b);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 70%),
    linear-gradient(145deg, rgba(13, 21, 37, 0.96), rgba(9, 15, 28, 0.98));
}

.rk-model-chip-row span {
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.rk-model-stat {
  min-height: 108px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rk-model-stat strong {
  font-size: 16px;
}

.rk-model-actions {
  gap: 14px;
}

.rk-command-strip {
  gap: 18px;
}

.rk-command-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(10, 17, 30, 0.96), rgba(7, 11, 21, 0.98));
}

.rk-capability-panel {
  gap: 14px;
}

.rk-capability-card {
  border-radius: 16px;
}

.rk-spec-cockpit {
  margin-top: 28px;
}

.rk-spec-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(145deg, rgba(9, 15, 28, 0.98), rgba(5, 10, 19, 0.99));
}

.rk-spec-panel-head {
  padding-bottom: 18px;
}

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

.rk-spec-card {
  min-height: 118px;
  border-radius: 16px;
  border-left: 3px solid var(--rk-accent, #ff9b4b);
}

.rk-spec-card strong {
  font-size: 17px;
}

.rk-gallery-grid {
  gap: 16px;
  grid-auto-rows: 250px;
}

.rk-gallery-grid .gallery-item {
  border-radius: 20px;
}

.model-detail-nav {
  margin-top: 32px;
}

@media (max-width: 1080px) {
  .rk-model-copy h1 {
    font-size: clamp(42px, 8vw, 60px);
  }

  .rk-stat-band,
  .rk-model-meta-strip,
  .rk-spec-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rk-model-hero {
    gap: 28px;
  }

  .rk-model-copy h1 {
    font-size: 40px;
  }

  .rk-model-headline {
    font-size: 22px;
    max-width: none;
  }

  .rk-model-meta-strip,
  .rk-stat-band,
  .rk-spec-card-grid {
    grid-template-columns: 1fr;
  }
}
