:root {
  --blue-900: #020617;
  --blue-800: #0b4f8a;
  --blue-700: #1464a4;
  --blue-100: #e0f2fe;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #cbd5e1;
  --surface: #ffffff;
  --accent: #ff6b00;
  --cyan: #00d4ff;
  --electric: #0066ff;
  --violet: #8b5cf6;
  --magenta: #e040fb;
  --lime: #00e676;
  --neon: #22d3ee;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.14);
  --radius: 16px;
  --radius-sm: 12px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --grad-tech: linear-gradient(135deg, #00b4d8, #0066ff, #7c3aed);
  --grad-warm: linear-gradient(135deg, #ff6b00, #e040fb, #7c3aed);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef2ff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.12;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 102, 255, 0.012) 3px,
    rgba(0, 102, 255, 0.012) 4px
  );
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(203, 213, 225, 0.6);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(203, 213, 225, 0.85);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand.compact { gap: 10px; align-items: center; }

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

.brand-logo.sm { width: 100%; height: 100%; }

.logo-frame {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 8px 28px rgba(11, 79, 138, 0.14);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(20, 100, 164, 0.55), rgba(245, 158, 11, 0.35), rgba(11, 79, 138, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 55%;
  height: 180%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.65) 50%, transparent 65%);
  transform: rotate(18deg) translateX(-120%);
  animation: logoShimmer 5.5s ease-in-out infinite;
  pointer-events: none;
}

.logo-frame-sm {
  width: 56px;
  height: 56px;
  padding: 5px;
  border-radius: 14px;
}

.logo-frame-xs {
  width: 48px;
  height: 48px;
  padding: 5px;
  border-radius: 14px;
}

.logo-frame-md {
  width: 196px;
  height: 196px;
  padding: 14px;
  border-radius: 22px;
  margin: 0 auto 16px;
}

.logo-frame-lg {
  width: 132px;
  height: 132px;
  padding: 12px;
  border-radius: 24px;
}

.brand:hover .logo-frame-sm {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(11, 79, 138, 0.22);
}

.logo-showcase {
  position: relative;
  width: fit-content;
  margin-bottom: 22px;
}

.logo-showcase-static .logo-ring { animation: none; opacity: 0.45; }

.logo-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  animation: ringSpin 18s linear infinite;
  pointer-events: none;
}

.logo-ring-2 {
  inset: -28px;
  border-style: solid;
  border-color: rgba(245, 158, 11, 0.22);
  animation-direction: reverse;
  animation-duration: 24s;
}

.logo-showcase::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 68%);
  filter: blur(8px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes logoShimmer {
  0%, 72% { transform: rotate(18deg) translateX(-120%); }
  100% { transform: rotate(18deg) translateX(220%); }
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.96); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

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

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

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.06); }
  66% { transform: translate(-10px, 10px) scale(0.94); }
}

@keyframes heroMesh {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

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

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes scanSweep {
  0% { transform: translateY(-100%); opacity: 0; }
  15% { opacity: 0.6; }
  100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.5; filter: hue-rotate(0deg); }
  50% { opacity: 1; filter: hue-rotate(30deg); }
}

@keyframes dataPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.35); }
  50% { box-shadow: 0 0 24px 4px rgba(0, 212, 255, 0.2); }
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-700), var(--blue-900));
}

.brand-text strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.brand-text em,
.brand-tagline {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:not(.nav-cta):hover {
  transform: translateY(-1px);
}

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

.site-nav a:hover,
.site-nav a.active {
  color: var(--electric);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 102, 255, 0.1));
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-caret {
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-caret,
.nav-dropdown:hover .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  min-width: 280px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.45;
  white-space: normal;
  background: transparent !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--blue-800) !important;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 102, 255, 0.08)) !important;
  transform: none !important;
}

.nav-dropdown-menu-wide {
  min-width: 300px;
}

.nav-submenu {
  position: relative;
}

.nav-submenu-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 11px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #334155;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.nav-submenu-trigger:hover,
.nav-submenu.is-open > .nav-submenu-trigger {
  color: var(--blue-800);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 102, 255, 0.08));
}

.nav-submenu-caret {
  flex: 0 0 auto;
  opacity: 0.65;
}

.nav-submenu-panel {
  position: absolute;
  top: -8px;
  left: calc(100% + 8px);
  z-index: 45;
  min-width: 240px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-submenu:hover > .nav-submenu-panel,
.nav-submenu.is-open > .nav-submenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.industry-chip-sub {
  font-weight: 600;
  opacity: 0.92;
}

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

.industry-overview-card {
  display: block;
  padding: 24px 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, #fff, #f8fbff);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.industry-overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 255, 0.28);
  box-shadow: 0 16px 32px rgba(0, 102, 255, 0.12);
}

.industry-overview-index {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--electric);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.industry-overview-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
  color: #0f172a;
}

.industry-overview-meta {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.industry-overview-grades {
  margin: 0 0 16px;
  padding-left: 18px;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}

.industry-overview-link {
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 700;
}

.industry-detail-panel {
  margin-bottom: 28px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.industry-detail-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.industry-detail-head h2 {
  margin: 0;
  font-size: 20px;
}

.industry-detail-bilingual {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.industry-note-box {
  margin-bottom: 18px;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 102, 255, 0.06));
  border: 1px solid rgba(0, 102, 255, 0.16);
}

.industry-note-box p {
  margin: 0 0 14px;
  color: #334155;
  line-height: 1.7;
}

.industry-grade-table-wrap {
  overflow-x: auto;
}

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

.industry-grade-table th,
.industry-grade-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  text-align: left;
  vertical-align: top;
}

.industry-grade-table th {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  background: #f8fafc;
}

.industry-grade-name {
  display: block;
  color: #0f172a;
  font-size: 15px;
}

.industry-grade-keys {
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
}

.industry-grade-link {
  display: inline-flex;
  margin: 0 8px 6px 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.industry-grade-link:hover {
  background: rgba(0, 102, 255, 0.14);
}

.polyolefin-detail-panel {
  margin-top: 8px;
}

.polyolefin-detail-block {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.polyolefin-detail-block:last-of-type {
  border-bottom: 0;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.polyolefin-detail-block-head h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #0f172a;
}

.polyolefin-detail-block-head p {
  margin: 0 0 16px;
  color: #64748b;
  line-height: 1.65;
}

.polyolefin-empty-box {
  margin-bottom: 8px;
}

.polyolefin-grade-table tr.is-placeholder td {
  background: repeating-linear-gradient(
    -45deg,
    #f8fafc,
    #f8fafc 8px,
    #f1f5f9 8px,
    #f1f5f9 16px
  );
  color: #64748b;
}

.polyolefin-product-list {
  display: grid;
  gap: 20px;
}

.polyolefin-product-card {
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.polyolefin-product-card h3 {
  margin: 6px 0 0;
  font-size: 22px;
  line-height: 1.35;
  color: #0f172a;
}

.polyolefin-product-section {
  margin-top: 18px;
}

.polyolefin-product-section h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #0f172a;
}

.polyolefin-product-section ul {
  margin: 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.7;
}

.polyolefin-app-chips {
  list-style: none !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.polyolefin-app-chips li {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 600;
}

.polyolefin-brand-list {
  display: grid;
  gap: 22px;
}

.polyolefin-brand-block {
  padding: 20px 20px 12px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #fff;
}

.polyolefin-brand-block > h3 {
  margin: 0 0 14px;
  font-size: 18px;
  color: #0f172a;
}

.polyolefin-series-block {
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.35);
}

.polyolefin-series-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.polyolefin-series-block h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  line-height: 1.5;
}

.polyolefin-series-grades {
  margin: 0;
  padding-left: 22px;
  color: #475569;
  line-height: 1.75;
}

.polyolefin-series-grades strong {
  color: #0f172a;
}

.industry-products-head {
  margin-top: 8px;
  margin-bottom: 16px;
}

.industry-products-head h2 {
  margin: 0;
  font-size: 22px;
}

.industry-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.industry-chip:hover {
  border-color: rgba(0, 102, 255, 0.35);
  color: var(--blue-800);
  transform: translateY(-1px);
}

.industry-chip.is-active {
  border-color: transparent;
  color: #fff;
  background: var(--grad-tech);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.28);
}

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

.solution-card {
  position: relative;
  padding: 28px 26px 24px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.28);
  box-shadow: 0 18px 36px rgba(0, 102, 255, 0.12);
}

.solution-card-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--electric);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.solution-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  color: #0f172a;
}

.solution-card p {
  margin: 0 0 22px;
  color: #64748b;
  line-height: 1.7;
}

.solution-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.solution-card-subtitle {
  margin: -4px 0 12px !important;
  color: #334155 !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45 !important;
}

.solution-card > p:not(.solution-card-subtitle) {
  margin-bottom: 22px;
}

.solution-back {
  margin: 0 0 18px;
}

.solution-detail-panel {
  margin-top: 8px;
  padding: 32px 34px 28px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.solution-detail-head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.solution-detail-head h1 {
  margin: 8px 0 14px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.3;
  color: #0f172a;
}

.solution-detail-intro {
  margin: 0;
  max-width: 72ch;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.solution-detail-block {
  margin-bottom: 28px;
}

.solution-detail-block h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: #0f172a;
}

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

.solution-detail-list li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.04);
  border: 1px solid rgba(0, 102, 255, 0.08);
  color: #334155;
  line-height: 1.6;
}

.solution-detail-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.05em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

.solution-workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.solution-workflow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #fff;
}

.solution-workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--grad-tech);
}

.solution-workflow-list p {
  margin: 0;
  color: #334155;
  line-height: 1.65;
}

.solution-who-text {
  margin: 0;
  padding: 16px 18px;
  border-radius: 14px;
  border-left: 4px solid var(--electric);
  background: rgba(15, 23, 42, 0.03);
  color: #334155;
  line-height: 1.7;
}

.solution-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

@media (max-width: 820px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-detail-panel {
    padding: 24px 18px 20px;
  }
}

.nav-cta {
  margin-left: 8px;
  color: #fff !important;
  background: var(--grad-tech) !important;
  background-size: 200% 200% !important;
  animation: gradientFlow 6s ease infinite;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 4px;
  border-radius: 999px;
  background: var(--blue-100);
}

.lang-switch a {
  min-width: 44px;
  text-align: center;
  padding: 8px 10px !important;
  font-size: 13px !important;
}

.lang-switch a.active {
  background: #fff !important;
  color: var(--blue-800) !important;
  box-shadow: 0 4px 12px rgba(11, 44, 82, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-100);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 56px;
  overflow: hidden;
  color: #e2e8f0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(2, 6, 23, 0.4) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 10%, rgba(0, 212, 255, 0.28), transparent 42%),
    radial-gradient(ellipse at 15% 85%, rgba(139, 92, 246, 0.22), transparent 38%),
    radial-gradient(ellipse at 90% 70%, rgba(255, 107, 0, 0.14), transparent 30%),
    linear-gradient(165deg, #020617 0%, #0f172a 45%, #1e1b4b 100%);
  animation: heroMesh 10s ease-in-out infinite;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.7;
  animation: orbDrift 14s ease-in-out infinite;
}

.hero-bg::before {
  width: 360px;
  height: 360px;
  top: 5%;
  right: 8%;
  background: rgba(0, 212, 255, 0.35);
}

.hero-bg::after {
  width: 280px;
  height: 280px;
  bottom: 8%;
  left: 5%;
  background: rgba(139, 92, 246, 0.3);
  animation-delay: -5s;
}

.hero .tech-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 75%);
  animation: gridScroll 20s linear infinite;
  pointer-events: none;
}

@keyframes gridScroll {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.35);
  -webkit-text-fill-color: #7dd3fc;
  animation: none;
}

.section-head .eyebrow,
.section-copy .eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--electric);
  background: rgba(0, 102, 255, 0.07);
  border: 1px solid rgba(0, 102, 255, 0.12);
  -webkit-text-fill-color: var(--electric);
  animation: none;
}

.advantages .eyebrow,
.contact .eyebrow {
  color: #7dd3fc;
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(125, 211, 252, 0.28);
  -webkit-text-fill-color: #7dd3fc;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f8fafc;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.lead {
  margin: 0 0 28px;
  max-width: 560px;
  color: rgba(226, 232, 240, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn:active { transform: scale(0.98); }

.btn.primary {
  color: #fff;
  background: var(--grad-tech);
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.4);
}

.btn.primary:hover {
  box-shadow: 0 18px 44px rgba(0, 212, 255, 0.45);
}

.btn.ghost {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn.ghost:hover {
  border-color: rgba(0, 212, 255, 0.65);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.2);
}

.btn.ghost-light {
  color: var(--blue-800);
  background: #fff;
  border: 1px solid var(--line);
}

.btn.ghost-light:hover {
  border-color: rgba(0, 102, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.12);
}

.btn.full { width: 100%; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 520px;
}

.hero-copy {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-stats div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(0, 212, 255, 0.25);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.2);
  animation: dataPulse 2s ease infinite;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  background: var(--grad-tech);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats span {
  color: rgba(226, 232, 240, 0.72);
  font-size: 13px;
}

.hero-stats div:nth-child(1) { animation: fadeUp 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-stats div:nth-child(2) { animation: fadeUp 0.8s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-stats div:nth-child(3) { animation: fadeUp 0.8s 0.41s cubic-bezier(0.22, 1, 0.36, 1) both; }

.hero-visual {
  position: relative;
  min-height: 400px;
  --mx: 0;
  --my: 0;
  animation: fadeUp 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: orbDrift 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: 120px;
  height: 120px;
  top: 6%;
  right: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
}

.hero-orb-2 {
  width: 80px;
  height: 80px;
  bottom: 18%;
  left: 10%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35), transparent 70%);
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 56px;
  height: 56px;
  top: 42%;
  right: 4%;
  background: radial-gradient(circle, rgba(20, 100, 164, 0.4), transparent 70%);
  animation-delay: -6s;
}

.hero-card {
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  will-change: transform;
}

.hero-card.main {
  inset: 5% 212px 8% 0;
  padding: 28px 24px;
  background:
    linear-gradient(155deg, rgba(15, 23, 42, 0.92), rgba(30, 27, 75, 0.88));
  color: #fff;
  transform: translate3d(calc(var(--mx) * 14px), calc(var(--my) * 14px), 0);
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(0, 212, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.15s ease-out;
  z-index: 1;
}

.hero-product-rail {
  position: absolute;
  top: 5%;
  right: 0;
  bottom: 8%;
  width: 200px;
  padding: 14px 12px 12px;
  border-radius: 18px;
  background:
    linear-gradient(165deg, rgba(8, 18, 36, 0.94), rgba(15, 23, 42, 0.88));
  border: 1px solid rgba(0, 212, 255, 0.28);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 32px rgba(0, 212, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * 10px), 0);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}

.hero-product-rail:hover {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(0, 212, 255, 0.14);
}

.hero-rail-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}

.hero-rail-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.35), transparent);
}

.hero-rail-line-h {
  top: 42px;
  left: 8%;
  right: 8%;
  height: 1px;
}

.hero-rail-line-v {
  top: 12%;
  bottom: 16%;
  left: 22px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.35), transparent);
}

.hero-rail-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 212, 255, 0.35);
}

.hero-rail-corner-tl {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.hero-rail-corner-br {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.hero-rail-head {
  position: relative;
  margin-bottom: 10px;
  padding-left: 6px;
}

.hero-rail-eyebrow {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.85);
}

.hero-rail-head strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
}

.hero-rail-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.hero-rail-item {
  --rail-accent: #00d4ff;
}

.hero-rail-item.accent-1 { --rail-accent: #00d4ff; }
.hero-rail-item.accent-2 { --rail-accent: #3b82f6; }
.hero-rail-item.accent-3 { --rail-accent: #8b5cf6; }
.hero-rail-item.accent-4 { --rail-accent: #f97316; }
.hero-rail-item.accent-5 { --rail-accent: #10b981; }
.hero-rail-item.accent-6 { --rail-accent: #22d3ee; }

.hero-rail-item a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
  padding: 6px 4px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
}

.hero-rail-item a:hover {
  background: rgba(0, 212, 255, 0.08);
}

.hero-rail-track {
  position: relative;
  display: flex;
  justify-content: center;
  width: 24px;
}

.hero-rail-node {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--rail-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12), 0 0 12px color-mix(in srgb, var(--rail-accent) 60%, transparent);
}

.hero-rail-connector {
  position: absolute;
  top: 14px;
  bottom: -8px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.45), rgba(0, 212, 255, 0.08));
}

.hero-rail-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-rail-code {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rail-accent);
}

.hero-rail-title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-rail-summary {
  font-size: 10px;
  line-height: 1.45;
  color: rgba(148, 163, 184, 0.92);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-rail-more {
  position: relative;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 212, 255, 0.16);
  font-size: 11px;
  font-weight: 700;
  color: #7dd3fc;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}

.hero-rail-more:hover {
  color: #fff;
}

.hero-logo-card .logo-showcase {
  animation: floatY 5.5s ease-in-out infinite;
}

.hero-logo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-logo-card .logo-frame-lg {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 16px 40px rgba(0, 0, 0, 0.18),
    0 0 48px rgba(245, 158, 11, 0.15);
}

.hero-logo-card h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 30px);
  letter-spacing: -0.01em;
}

.hero-card.main p {
  margin: 0;
  opacity: 0.88;
  line-height: 1.55;
  max-width: 100%;
}

#heroVisual[data-tilt="1"] .hero-product-rail {
  transform: translate3d(calc(var(--mx) * -12px), calc(var(--my) * 12px), 0);
}

.section {
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.12), transparent);
  pointer-events: none;
}

.hero + .section::before,
.advantages + .section::before,
.contact + .section::before {
  display: none;
}

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

.section-head h2,
.section-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 15%, #0066ff 55%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.advantages .section-head h2,
.contact .section-head h2,
.contact .section-copy h2 {
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-head.center {
  display: block;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-head p,
.section-copy p {
  margin: 0;
  color: var(--muted);
}

.about {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0, 212, 255, 0.12), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(139, 92, 246, 0.1), transparent 45%),
    linear-gradient(180deg, #f0f9ff 0%, #eef2ff 100%);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.products {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 107, 0, 0.08), transparent 40%),
    #ffffff;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.03), transparent);
  animation: gradientFlow 8s ease infinite;
  background-size: 200% 100%;
  pointer-events: none;
}

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

.product-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(203, 213, 225, 0.85);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    border-color 0.32s var(--ease-out),
    background 0.32s var(--ease-out),
    color 0.32s var(--ease-out);
}

.product-card-media {
  padding: 0;
}

.product-card-media .product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #eef2ff;
  border-bottom: 1px solid rgba(203, 213, 225, 0.65);
}

.product-media-lg {
  height: 360px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 52%, #dbeafe 100%);
}

.product-media-placeholder span {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(0, 102, 255, 0.16);
}

.product-media-placeholder-xl span {
  font-size: clamp(56px, 10vw, 96px);
}

.product-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.25);
}

.product-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(155deg, #041726 0%, #0b2a4a 42%, #0f3d7a 100%);
  color: #fff;
  border-color: rgba(56, 139, 255, 0.5);
  box-shadow: 0 22px 52px rgba(4, 23, 38, 0.38), 0 0 0 1px rgba(56, 139, 255, 0.15) inset;
}

.product-card:hover h2,
.product-card:hover h3,
.product-card:hover .product-card-grade,
.product-card:hover .product-card-name {
  color: #fff;
}

.product-card:hover .product-summary,
.product-card:hover .product-features,
.product-card:hover .product-features li {
  color: rgba(255, 255, 255, 0.84);
}

.product-card:hover .product-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  animation: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.product-card:hover::after {
  opacity: 0;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--grad-tech));
  background-size: 200% 200%;
  animation: gradientFlow 4s ease infinite;
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-warm);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.28);
}

.contact .btn.primary {
  background: var(--grad-tech);
  background-size: 200% 200%;
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
}

.contact .btn.primary:hover {
  box-shadow: 0 16px 40px rgba(0, 212, 255, 0.35);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--card-glow, rgba(0, 212, 255, 0.08)), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .btn-product-detail {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.product-card.featured .btn-product-detail:hover {
  background: rgba(255, 255, 255, 0.24);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 14px;
  background: var(--grad-tech);
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
}

.product-card.accent-1 { --card-accent: linear-gradient(90deg, #00d4ff, #0066ff); --card-glow: rgba(0, 212, 255, 0.15); }
.product-card.accent-2 { --card-accent: linear-gradient(90deg, #0066ff, #8b5cf6); --card-glow: rgba(139, 92, 246, 0.15); }
.product-card.accent-3 { --card-accent: linear-gradient(90deg, #8b5cf6, #e040fb); --card-glow: rgba(224, 64, 251, 0.12); }
.product-card.accent-4 { --card-accent: linear-gradient(90deg, #ff6b00, #ff4081); --card-glow: rgba(255, 107, 0, 0.12); }
.product-card.accent-5 { --card-accent: linear-gradient(90deg, #00e676, #00d4ff); --card-glow: rgba(0, 230, 118, 0.12); }
.product-card.accent-6 { --card-accent: linear-gradient(90deg, #22d3ee, #0066ff); --card-glow: rgba(34, 211, 238, 0.12); }

.product-card.featured {
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.08);
}

.product-card.featured::before {
  height: 4px;
  background: var(--grad-warm);
  background-size: 200% 200%;
}

.product-card.featured .product-icon {
  background: var(--grad-warm);
  background-size: 200% 200%;
  color: #fff;
}

.product-card h2,
.product-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.product-card-head {
  margin-bottom: 8px;
}

.product-card-grade {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.product-card-name {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-summary {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.55em * 2);
  max-height: calc(1.55em * 2);
}

.product-features {
  margin: 0 0 14px;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  flex: 1;
}

.product-features li { margin-bottom: 4px; }

.btn-product-detail {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--electric);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  pointer-events: none;
  transition: background 0.28s var(--ease-out), color 0.28s var(--ease-out), transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  padding: 20px;
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  opacity: 0;
  transition: opacity 0.28s var(--ease-out);
}

.product-modal[hidden] {
  display: none !important;
}

.product-modal:not([hidden]) {
  display: grid;
  place-items: center;
}

.product-modal.is-open {
  opacity: 1;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.product-modal-dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32), 0 0 48px rgba(0, 212, 255, 0.1);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.32s var(--ease-out);
}

.product-modal.is-open .product-modal-dialog {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-modal-close:hover {
  transform: scale(1.04);
}

.product-modal-code {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-tech);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.product-modal-head h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--ink);
}

.product-modal-head p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-modal-body {
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-line;
}

.product-modal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.inquiry-modal-dialog {
  width: min(540px, 100%);
  max-height: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.inquiry-modal-panel {
  position: relative;
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 26px 24px 22px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0, 212, 255, 0.12), transparent 42%),
    linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(30, 27, 75, 0.94));
  border: 1px solid rgba(0, 212, 255, 0.28);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.45), 0 0 48px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(16px);
}

.inquiry-modal-close {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.inquiry-modal-close:hover {
  background: rgba(0, 212, 255, 0.16);
  border-color: rgba(0, 212, 255, 0.35);
}

.inquiry-modal-head {
  margin-bottom: 6px;
  padding-right: 36px;
}

.inquiry-modal-head h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 26px);
  line-height: 1.25;
  color: #fff;
}

.inquiry-modal-head p {
  margin: 0 0 18px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.inquiry-modal-form {
  margin: 0;
  padding: 22px 20px 18px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.inquiry-modal-form label:last-of-type {
  margin-bottom: 18px;
}

.inquiry-modal-form .form-tip {
  color: rgba(226, 232, 240, 0.62);
  text-align: center;
}

.inquiry-modal-form .btn.primary {
  margin-top: 4px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
}

.product-detail-actions .btn {
  min-width: 140px;
}

@media (max-width: 760px) {
  .inquiry-modal-dialog {
    width: 100%;
  }

  .inquiry-modal-panel {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  .inquiry-modal-form {
    padding: 18px 16px 14px;
  }

  .product-detail-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-detail-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

.product-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.advantages {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 212, 255, 0.15), transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(139, 92, 246, 0.12), transparent 40%),
    linear-gradient(180deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
  color: #fff;
}

.advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black, transparent 95%);
  pointer-events: none;
}

.advantages .section-head.light p,
.advantages .section-head.light .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

.adv-grid article {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.adv-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-tech);
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
  opacity: 0.7;
}

.adv-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.adv-no {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.adv-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.adv-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.news-card {
  position: relative;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(203, 213, 225, 0.85);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    border-color 0.32s var(--ease-out),
    background 0.32s var(--ease-out),
    color 0.32s var(--ease-out);
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-tech);
  background-size: 200% 200%;
  animation: gradientFlow 4s ease infinite;
}

.news-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(155deg, #041726 0%, #0b2a4a 42%, #0f3d7a 100%);
  color: #fff;
  border-color: rgba(56, 139, 255, 0.45);
  box-shadow: 0 20px 48px rgba(4, 23, 38, 0.32);
}

.news-card:hover time {
  color: rgba(125, 211, 252, 0.95);
}

.news-card:hover h3 {
  color: #fff;
}

.news-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.news-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--electric);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.32s var(--ease-out);
}

.contact {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(0, 212, 255, 0.12), transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(139, 92, 246, 0.1), transparent 45%),
    linear-gradient(165deg, #020617 0%, #0f172a 60%, #1e1b4b 100%);
  color: #e2e8f0;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.contact .section-copy p,
.contact .contact-list span,
.contact .contact-list em {
  color: rgba(226, 232, 240, 0.78);
}

.contact .contact-list strong {
  color: var(--cyan);
}

.contact-form {
  padding: 28px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 212, 255, 0.08);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 14px;
  font: inherit;
  background: rgba(2, 6, 23, 0.6);
  color: #f8fafc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(226, 232, 240, 0.45);
}

.form-tip {
  margin: 12px 0 0;
  color: rgba(226, 232, 240, 0.65);
  font-size: 13px;
  line-height: 1.5;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.form-tip.is-success {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #6ee7b7 !important;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.form-tip.is-error {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fca5a5 !important;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.contact-form.is-submitted-success .btn.primary {
  opacity: 0.72;
}

.service-badges article {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-badges article:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
}

.service-badges strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--cyan);
}

.service-badges span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.contact-list li {
  border-bottom-color: rgba(0, 212, 255, 0.12);
}

.news-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.45;
  transition: color 0.32s var(--ease-out);
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.32s var(--ease-out);
}

.news {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.06), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.contact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

.contact-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 13px;
  opacity: 0.85;
}

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

.brochure-link a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  padding: 36px 0 20px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.08), transparent 50%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(0, 212, 255, 0.12);
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  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.56);
  font-size: 13px;
}

.about-layout {
  display: grid;
  gap: 18px;
}

.about-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.35;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.about-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-tech);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.about-logo-wrap .logo-frame-md {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95) inset,
    0 12px 32px rgba(0, 102, 255, 0.16);
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.info-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--electric);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.info-card-vision .info-card-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.about-panel {
  padding: 24px 26px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.16);
  box-shadow: 0 18px 44px rgba(0, 102, 255, 0.08);
  backdrop-filter: blur(8px);
}

.about-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.about-panel-head h4 {
  margin: 0;
  color: var(--electric);
  font-size: 20px;
}

.about-panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.35), transparent 55%),
    linear-gradient(135deg, rgba(0, 102, 255, 0.16), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(0, 212, 255, 0.22);
  position: relative;
}

.about-panel-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 2px solid rgba(0, 102, 255, 0.45);
}

.about-panel-icon-partners::after {
  inset: 11px 8px;
  border-radius: 4px;
  border: 0;
  background:
    linear-gradient(#0066ff, #0066ff) 0 0 / 100% 2px no-repeat,
    linear-gradient(#0066ff, #0066ff) 0 100% / 100% 2px no-repeat,
    linear-gradient(#0066ff, #0066ff) 50% 0 / 2px 100% no-repeat;
  opacity: 0.55;
}

.about-panel-icon-industries::after {
  inset: 10px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.5), rgba(124, 58, 237, 0.45));
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
}

.timeline-v2 {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 8px;
}

.timeline-v2::before {
  content: "";
  position: absolute;
  left: 118px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.15), rgba(0, 102, 255, 0.45), rgba(139, 92, 246, 0.2));
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0 0 22px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #0066ff;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
  flex-shrink: 0;
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.08));
  border: 1px solid rgba(0, 102, 255, 0.14);
  color: var(--electric);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.timeline-card {
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-card {
  transform: translateX(4px);
  border-color: rgba(0, 102, 255, 0.22);
  box-shadow: 0 16px 36px rgba(0, 102, 255, 0.1);
}

.timeline-item:hover .timeline-dot {
  background: #0066ff;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.18), 0 0 16px rgba(0, 212, 255, 0.35);
}

.timeline-card h5 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--ink);
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

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

.partners-grid-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.partner-card {
  display: flex;
  align-items: stretch;
  padding: 0;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, 0.85);
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 255, 0.22);
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.1);
}

.partner-logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 76px;
  background: #fff;
  overflow: hidden;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px 6px;
}

.partner-monogram {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, color-mix(in srgb, var(--partner-accent, #0066ff) 14%, white), rgba(248, 250, 252, 0.98));
  color: var(--partner-accent, #0066ff);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.partner-name {
  display: none;
}

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

.industry-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid rgba(203, 213, 225, 0.85);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 102, 255, 0.08);
}

.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
  color: #fff;
  background: var(--grad-tech);
  background-size: 200% 200%;
  animation: gradientFlow 6s ease infinite;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.18);
}

.industry-icon svg {
  width: 22px;
  height: 22px;
}

.industry-icon-1 { background: linear-gradient(135deg, #38bdf8, #0284c7); animation: none; }
.industry-icon-2 { background: linear-gradient(135deg, #34d399, #059669); animation: none; }
.industry-icon-3 { background: linear-gradient(135deg, #fbbf24, #d97706); animation: none; }
.industry-icon-4 { background: linear-gradient(135deg, #f472b6, #db2777); animation: none; }
.industry-icon-5 { background: linear-gradient(135deg, #818cf8, #4f46e5); animation: none; }
.industry-icon-6 { background: linear-gradient(135deg, #22d3ee, #0891b2); animation: none; }

.industry-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--ink);
}

.industry-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.team-intro {
  margin: 0 0 16px;
  max-width: 820px;
  color: var(--muted);
  font-size: 15px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.team-card {
  padding: 18px;
}
.team-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.cert-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}
.brochure-link {
  margin: 16px 0 0;
}
.brochure-link a:hover { text-decoration: underline; }
.about-intro,
.about-intro-compact {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.35s ease;
}

.about-logo-wrap,
.about-logo-wrap-compact {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.25);
  text-align: center;
  overflow: hidden;
}

.about-logo-wrap-compact .logo-frame-md {
  width: 120px;
  height: 120px;
  padding: 8px;
  margin: 0 auto;
}

.about-badge { display: none; }

.info-card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-tech);
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.12);
}

.info-card h4 {
  margin: 0 0 10px;
  color: var(--electric);
  font-size: 18px;
}

.team {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(139, 92, 246, 0.08), transparent 45%),
    linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
}

.team-card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.15);
}

.team-card h3 {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 20px;
}

.certifications {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 230, 118, 0.1), transparent 45%),
    radial-gradient(ellipse at 100% 50%, rgba(0, 212, 255, 0.12), transparent 45%),
    linear-gradient(180deg, #ecfdf5 0%, #ecfeff 50%, #eff6ff 100%);
}

.certifications::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cert-card {
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 4px solid var(--cert-accent, var(--cyan));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(6px);
}

.cert-card:nth-child(1) { --cert-accent: #00d4ff; }
.cert-card:nth-child(2) { --cert-accent: #00e676; }
.cert-card:nth-child(3) { --cert-accent: #8b5cf6; }
.cert-card:nth-child(4) { --cert-accent: #ff6b00; }

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 212, 255, 0.15);
}

.cert-card h3 {
  margin: 0 0 10px;
  color: var(--electric);
  font-size: 18px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}
.hero-actions .btn.brochure {
  border-color: rgba(255, 255, 255, 0.35);
}

.subpage {
  padding-top: calc(var(--header-h) + 24px);
}

.subpage-hero {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0, 212, 255, 0.1), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.products-page .section-head h1,
.product-detail-page h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 15%, #0066ff 55%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--electric);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
}

.product-grid-page {
  margin-top: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-grid-page .product-media {
  height: 200px;
}

.product-grid-page .product-card-media .product-body {
  padding: 14px 16px 16px;
}

.product-grid-page .product-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border-radius: 10px;
  font-size: 12px;
}

.product-grid-page .product-card-grade {
  margin-bottom: 4px;
  font-size: 18px;
}

.product-grid-page .product-card-name {
  margin-bottom: 6px;
  font-size: 13px;
  -webkit-line-clamp: 2;
}

.product-grid-page .product-card h2,
.product-grid-page .product-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.35;
}

.product-grid-page .product-summary {
  font-size: 13px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}

.product-grid-page .btn-product-detail {
  margin-top: 10px;
  font-size: 13px;
}

.product-grid-page .product-badge {
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-size: 11px;
}

.product-detail-card {
  padding: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.1);
  overflow: hidden;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: 480px;
}

.product-detail-media {
  position: relative;
  min-height: 480px;
  background: #eef2ff;
  display: flex;
  flex-direction: column;
}

.product-detail-media .product-gallery,
.product-detail-media .product-media-placeholder {
  flex: 1;
  min-height: 480px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
}

.product-gallery-main {
  position: relative;
  flex: 1;
  min-height: 360px;
  display: flex;
  align-items: stretch;
}

.product-gallery-stage {
  flex: 1;
  position: relative;
  padding: 0;
  border: 0;
  background: #eef2ff;
  cursor: zoom-in;
  overflow: hidden;
}

.product-gallery-main-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease-out);
}

.product-gallery-stage:hover .product-gallery-main-img {
  transform: scale(1.03);
}

.product-gallery-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.product-gallery-nav.prev { left: 12px; }
.product-gallery-nav.next { right: 12px; }

.product-gallery-nav:hover {
  background: #fff;
  color: var(--electric);
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(203, 213, 225, 0.75);
}

.product-gallery-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.product-gallery-thumb.is-active {
  border-color: var(--electric);
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.12);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: grid;
  place-items: center;
}

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

.product-lightbox:not([hidden]) {
  display: grid;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 24, 0.88);
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1080px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox-img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.product-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.product-lightbox-nav.prev { left: -56px; }
.product-lightbox-nav.next { right: -56px; }

.product-lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.product-detail-media img,
.product-detail-media .product-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.product-detail-media > img {
  object-fit: cover;
  display: block;
}

.product-detail-content {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
}

.section-actions {
  margin-top: 22px;
}

.section-actions.center {
  text-align: center;
}

.product-detail-head h1 {
  margin-top: 12px;
}

.product-detail-specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 24px;
}

.product-detail-spec-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px 20px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(203, 213, 225, 0.75);
}

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

.product-detail-spec-row dt {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--electric);
  line-height: 1.5;
}

.product-detail-spec-row dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.product-detail-spec-row.is-grade {
  align-items: center;
  padding-bottom: 22px;
}

.product-detail-spec-row.is-grade dt {
  font-size: 15px;
}

.product-detail-grade {
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.product-detail-summary {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.product-detail-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.12);
  color: var(--electric);
  font-size: 13px;
  font-weight: 600;
}

.product-detail-body {
  padding: 20px 22px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.8;
  font-size: 15px;
}

.product-badge.inline {
  position: static;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.empty-state {
  padding: 48px 24px;
  text-align: center;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.empty-state h1 {
  margin: 0 0 16px;
  font-size: 28px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--grad-tech);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 102, 255, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 102, 255, 0.42);
}

.footer-grid a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .product-grid,
  .product-grid-page,
  .news-grid,
  .adv-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-media,
  .product-detail-media img,
  .product-detail-media .product-media-placeholder {
    min-height: 320px;
  }

  .hero-visual { min-height: 320px; }
  .hero-card.main { inset: 5% 188px 8% 0; }
  .hero-product-rail { width: 178px; }
  .about-intro, .info-cards, .team-grid, .cert-grid { grid-template-columns: 1fr; }
  .partners-grid,
  .partners-grid-7 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline-v2::before { left: 18px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; padding-left: 42px; }
  .timeline-marker { padding-top: 0; }
  .timeline-year { min-width: auto; }
  .service-badges { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .brand-tagline { display: none; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
    background: #f8fafc;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    gap: 4px;
  }

  .nav-submenu-panel {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    transform: none;
    box-shadow: none;
    border-radius: 10px;
    background: #eef4fb;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-submenu:hover > .nav-submenu-panel {
    display: none;
  }

  .nav-submenu.is-open > .nav-submenu-panel {
    display: grid;
    gap: 2px;
  }

  .nav-submenu-caret {
    transform: rotate(90deg);
  }

  .nav-submenu.is-open .nav-submenu-caret {
    transform: rotate(-90deg);
  }

  .industry-filter {
    gap: 8px;
  }

  .industry-chip {
    font-size: 12px;
    min-height: 34px;
    padding: 7px 12px;
  }

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

  .industry-overview-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .product-grid,
  .product-grid-page,
  .news-grid,
  .adv-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-content {
    padding: 24px 20px;
  }

  .product-detail-spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-detail-grade {
    font-size: 32px;
  }

  .product-detail-media,
  .product-detail-media .product-gallery,
  .product-detail-media .product-media-placeholder,
  .product-gallery-main-img {
    min-height: 260px;
  }

  .product-lightbox-nav.prev { left: 8px; }
  .product-lightbox-nav.next { right: 8px; }
  .product-lightbox-close { top: 12px; right: 12px; }

  .hero { padding-bottom: 48px; }
  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-card.main {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 22px 20px;
  }
  .hero-product-rail {
    position: relative;
    inset: auto;
    width: 100%;
    bottom: auto;
    top: auto;
    transform: none;
  }
  #heroVisual[data-tilt="1"] .hero-product-rail {
    transform: none;
  }
  .logo-frame-lg { width: 112px; height: 112px; }
  .logo-frame-md { width: 168px; height: 168px; }
  .hero-stats { max-width: none; }
  .section { padding: 44px 0; }
  .footer-bottom { flex-direction: column; }
  .partners-grid,
  .partners-grid-7,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body::before { display: none; }

  .reveal,
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
