* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  background: #020203;
}

main {
  position: relative;
  background: #020203;
  isolation: isolate;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

main > * {
  position: relative;
  z-index: 1;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: #e53935;
  color: #fff;
  border-radius: 8px;
  z-index: 5000;
}

.site-directory {
  position: fixed;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: 3100;
  display: grid;
  gap: 10px;
  justify-items: end;
  pointer-events: none;
}

.site-directory-toggle,
.site-directory-panel,
.site-directory-panel * {
  pointer-events: auto;
}

.site-directory-toggle {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(10,12,14,0.9);
  color: rgba(255,255,255,0.94);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.32);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-directory.is-dragging .site-directory-toggle {
  cursor: grabbing;
  transform: scale(0.98);
}

.site-directory-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(229,57,53,0.55);
  background: rgba(18,20,24,0.95);
}

.site-directory-panel {
  width: min(320px, calc(100vw - 26px));
  max-height: min(74vh, 560px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px 26px 24px 14px;
  background:
    linear-gradient(180deg, rgba(16,18,22,0.96), rgba(7,8,10,0.94));
  box-shadow: 0 28px 60px rgba(0,0,0,0.44), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 12px;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-directory-panel::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,57,53,0.14), rgba(229,57,53,0) 70%);
  pointer-events: none;
}

.site-directory.is-open .site-directory-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.site-directory-panel-title {
  display: block;
  padding: 4px 10px 12px;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-directory-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-directory-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  background: rgba(255,255,255,0.04);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.site-directory-list a:hover {
  border-color: rgba(229,57,53,0.34);
  background: rgba(229,57,53,0.12);
  color: #fff;
  transform: translateX(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.site-directory-list a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(229,57,53,0.74);
  box-shadow: 0 0 0 3px rgba(229,57,53,0.08);
  flex: 0 0 auto;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-directory-list a:hover::before,
.site-directory-list a.is-current::before {
  transform: scale(1.12);
  background: #e53935;
  box-shadow: 0 0 0 4px rgba(229,57,53,0.12);
}

.site-directory-list a.is-current {
  border-color: rgba(229,57,53,0.62);
  background: rgba(229,57,53,0.2);
  color: #fff;
  box-shadow: 0 8px 20px rgba(229,57,53,0.12);
}

.reveal {
  opacity: 0;
  transition:
    opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal:not(.reveal-visible) {
  transform: translateY(24px);
}

.reveal-visible {
  opacity: 1;
}

.reveal-delay-1 { --reveal-delay: 180ms; }
.reveal-delay-2 { --reveal-delay: 320ms; }
.reveal-delay-3 { --reveal-delay: 480ms; }

.reveal-glow {
  position: relative;
  isolation: isolate;
}

.reveal-glow-layer {
  position: absolute;
  inset: 8% auto auto 4%;
  z-index: 0;
  width: min(540px, 52vw);
  height: min(360px, 58%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,57,53,0.16), rgba(229,57,53,0.06) 42%, transparent 72%);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

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

.reveal-glow > :not(.reveal-glow-layer) {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-glow-layer {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

}

@media (max-width: 760px) {
  .site-directory {
    right: 0;
    bottom: 0;
    top: auto;
  }

  .site-directory-toggle {
    padding: 9px 14px;
    font-size: 12px;
  }

  .site-directory-panel {
    width: min(290px, calc(100vw - 20px));
    max-height: 66vh;
  }

  .site-directory-list a {
    padding: 10px 12px 10px 14px;
    font-size: 12px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 12px 64px 36px;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.04);
}

.hero .hero-video {
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.25));
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(2,2,3,0.02) 0%, rgba(2,2,3,0.16) 55%, rgba(2,2,3,0.72) 100%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  background-position: center, center, center;
  opacity: 0.96;
}

.hero-motion {
  position: relative;
  z-index: 3;
  transform: scale(var(--hero-scroll-scale, 1));
  transform-origin: top left;
  opacity: var(--hero-scroll-opacity, 1);
  transition: opacity 180ms linear, transform 180ms linear;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.navbar {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
}

.logo-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  height: 120px;
  overflow: visible;
  margin-left: -72px;
}

.logo-card img {
  height: 120px;
  width: auto;
  display: block;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  mix-blend-mode: normal;
  filter: saturate(1.3) brightness(1.15);
  transform: scale(2.1);
  transform-origin: left center;
}

.hero-content {
  max-width: 760px;
  margin-top: 6px;
  margin-left: 26px;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 8px auto 0;
  width: min(1320px, 100%);
  align-items: start;
  padding: 0 0 24px;
}

.home-hero-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0;
}

.home-hero-copy .hero-title {
  max-width: min(20ch, 700px);
  margin: 0;
  font-size: clamp(50px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 780;
}

.home-hero-copy .hero-title span:nth-child(2) {
  white-space: nowrap;
}

.home-hero-copy .hero-title span:nth-child(3) {
  color: #ff3f3a;
}

.home-hero-copy .hero-subtitle {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 600;
  line-height: 1.32;
}

.home-hero-copy .hero-description {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 450;
  line-height: 1.6;
}

.line-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.line-hero-actions .btn {
  min-width: 176px;
  justify-content: center;
}

.line-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
}

.line-metric {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.line-metric strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.line-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .line-hero-metrics {
  display: grid;
  grid-template-columns: 0.9fr 0.95fr 1.14fr 0.82fr;
  gap: 0;
  align-items: center;
  margin-top: 34px;
  padding-top: 10px;
  max-width: 1180px;
}

.hero .line-metric {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.hero .line-metric span {
  margin-top: 0;
}

.hero .line-metric:not(:first-child) {
  border-left: 1px solid rgba(255,255,255,0.32);
}

.hero .hero-metric-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff3f3a;
  margin-top: 1px;
}

.hero .hero-metric-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero .line-metric {
  transition: transform 220ms ease;
}

.hero .line-metric:hover {
  transform: translateY(-2px);
}

.hero .line-metric:hover .hero-metric-icon svg {
  animation: heroUspRoll 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .line-metric:hover .hero-metric-value {
  animation: heroUspValuePulse 900ms ease-in-out infinite;
}

.hero .line-metric:hover .hero-metric-label,
.hero .line-metric:hover .hero-metric-subtext {
  animation: heroUspTextPulse 1000ms ease-in-out infinite;
}

.hero .line-metric:hover .hero-metric-copy {
  animation: heroUspCopyFloat 1100ms ease-in-out infinite;
}

.hero .hero-metric-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 2px;
}

.hero .hero-metric-label {
  display: block;
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.1;
  min-height: 1.1em;
  white-space: nowrap;
}

.hero .hero-metric-value {
  font-size: clamp(20px, 1.9vw, 36px);
  font-weight: 770;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
}

.hero .hero-metric-subtext {
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.2;
}

.hero .hero-stat-item--text .hero-metric-value--text {
  font-size: clamp(14px, 1.2vw, 24px);
  line-height: 1;
  letter-spacing: -0.005em;
  white-space: normal;
  text-transform: uppercase;
  max-width: 100%;
  text-wrap: balance;
}

.hero .line-hero-actions {
  margin-top: 40px;
  justify-content: flex-start;
}

.hero .line-hero-actions .btn {
  min-width: 300px;
  text-align: center;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease, box-shadow 240ms ease;
}

.hero .line-hero-actions .btn:hover {
  transform: scale(1.08) translateY(-2px);
  filter: brightness(1.35) saturate(1.25);
  box-shadow: 0 26px 56px rgba(255, 47, 47, 0.52), 0 0 32px rgba(255, 74, 74, 0.5), inset 0 0 0 1px rgba(255,255,255,0.24);
}

.hero .line-hero-actions .btn:hover::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.24) 50%, rgba(255,255,255,0) 80%);
  animation: heroCtaSweep 1200ms linear infinite;
}

.home-hero-media {
  display: none;
}

.home-hero-media::after {
  content: none;
}

.home-hero-media img {
  display: none;
}

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateX(-14px);
}

.hero-title {
  display: grid;
  gap: 0;
  margin: 0 0 10px;
  max-width: 820px;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(14px);
}

.hero .hero-title,
.hero .hero-title span,
.hero .hero-subtitle,
.hero .hero-description {
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-subtitle,
.hero-description,
.hero-actions .btn,
.hero-stats .hero-stat-item {
  opacity: 0;
  transform: translateY(12px);
}

.hero-ready .hero-eyebrow,
.hero-ready .hero-title span,
.hero-ready .hero-subtitle,
.hero-ready .hero-description,
.hero-ready .hero-actions .btn,
.hero-ready .hero-stats .hero-stat-item {
  opacity: 1;
  transform: none;
}

.hero-animate-in .hero-eyebrow {
  animation: heroEyebrowIn 520ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.hero-animate-in .hero-title span {
  animation: heroLineIn 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate-in .hero-title span:nth-child(1) { animation-delay: 170ms; }
.hero-animate-in .hero-title span:nth-child(2) { animation-delay: 310ms; }
.hero-animate-in .hero-title span:nth-child(3) { animation-delay: 450ms; }

.hero-animate-in .hero-subtitle {
  animation: heroCopyIn 600ms cubic-bezier(0.22, 1, 0.36, 1) 640ms forwards;
}

.hero-animate-in .hero-description {
  animation: heroCopyIn 600ms cubic-bezier(0.22, 1, 0.36, 1) 760ms forwards;
}

.hero-animate-in .hero-stats .hero-stat-item {
  animation: heroCopyIn 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate-in .hero-stats .hero-stat-item:nth-child(1) { animation-delay: 860ms; }
.hero-animate-in .hero-stats .hero-stat-item:nth-child(2) { animation-delay: 980ms; }
.hero-animate-in .hero-stats .hero-stat-item:nth-child(3) { animation-delay: 1100ms; }
.hero-animate-in .hero-stats .hero-stat-item:nth-child(4) { animation-delay: 1220ms; }

.hero-actions .btn {
  transform: scale(0.96) translateY(10px);
}

.hero-animate-in .hero-actions .btn {
  animation: heroButtonIn 640ms cubic-bezier(0.22, 1, 0.36, 1) 1240ms forwards;
}

@keyframes heroEyebrowIn {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroUspRoll {
  0% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(220deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes heroUspValuePulse {
  0% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }

  50% {
    transform: translateY(-1px) scale(1.06);
    text-shadow: 0 0 20px rgba(255,255,255,0.26);
  }

  100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
}

@keyframes heroUspTextPulse {
  0% {
    opacity: 0.74;
    letter-spacing: 0.08em;
  }

  50% {
    opacity: 1;
    letter-spacing: 0.11em;
  }

  100% {
    opacity: 0.74;
    letter-spacing: 0.08em;
  }
}

@keyframes heroUspCopyFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes heroCtaSweep {
  0% {
    transform: translateX(-68%);
  }

  100% {
    transform: translateX(68%);
  }
}

.nav-links {
  position: relative;
  z-index: 21;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.nav-links a,
.dropdown-toggle {
  color: white;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-weight: 600;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  font-family: inherit;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.dropdown-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.dropdown-toggle::after {
  content: "▾";
  font-size: 12px;
  margin-left: 4px;
  opacity: 0.8;
}

.lang-dropdown > .dropdown-toggle {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.lang-dropdown .dropdown-menu {
  right: 0;
  left: auto;
}

.explore-nav {
  position: sticky;
  top: 0;
  z-index: 35;
  padding: 0 80px;
  margin-top: -1px;
}

.explore-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -92px;
  height: 92px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2,2,3,0) 0%, rgba(2,2,3,0.58) 64%, rgba(7,8,10,0.92) 100%);
  z-index: 1;
}

.explore-nav-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(10,12,14,0.94), rgba(5,6,8,0.95));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.explore-nav-label {
  flex: 0 0 auto;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
}

.explore-nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.explore-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0 10px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.explore-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: #e53935;
  transition: right 0.22s ease;
}

.explore-nav-link:hover,
.explore-nav-link:focus-visible,
.explore-nav-link.is-active {
  color: #ffffff;
  transform: translateY(-1px);
}

.explore-nav-link:hover::after,
.explore-nav-link:focus-visible::after,
.explore-nav-link.is-active::after {
  right: 0;
}

.page-explore-compact .explore-nav {
  padding: 0 28px;
}

.page-explore-compact .explore-nav-inner {
  width: 100%;
  max-width: none;
  gap: 10px;
  padding: 12px 16px;
}

.page-explore-compact .explore-nav-label {
  flex: 0 0 auto;
  white-space: nowrap;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.page-explore-compact .explore-nav-links {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(var(--explore-count), minmax(0, 1fr));
  flex-wrap: nowrap;
  overflow-x: hidden;
  overflow-y: hidden;
  gap: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-explore-compact .explore-nav-links::-webkit-scrollbar {
  display: none;
}

.page-explore-compact .explore-nav-links.is-spread {
  justify-content: initial;
}

.page-explore-compact .explore-nav-links.is-compact {
  justify-content: initial;
}

.page-explore-compact .explore-nav-link {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  font-size: 12px;
  padding: 7px 0 9px;
  margin-right: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.page-explore-compact .explore-nav--dense .explore-nav-link {
  font-size: 11px;
}

.motion-connector-standard .reveal {
  transition-duration: 1.08s;
  transition-timing-function: cubic-bezier(0.21, 0.87, 0.24, 1);
}

.motion-connector-standard .reveal-delay-1 {
  --reveal-delay: 220ms;
}

.motion-connector-standard .reveal-delay-2 {
  --reveal-delay: 380ms;
}

.motion-connector-standard .reveal-delay-3 {
  --reveal-delay: 540ms;
}

[data-explore-target] {
  scroll-margin-top: 120px;
}

.section-heading--compact {
  margin-bottom: 28px;
}

.about-solarone-section {
  padding: 28px 80px 92px;
  background: transparent;
}

.about-solarone-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.about-solarone-panel {
  display: grid;
  gap: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025)),
    rgba(6,7,9,0.92);
}

.about-solarone-panel p {
  max-width: 840px;
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  line-height: 1.75;
}

.about-solarone-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-solarone-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-solarone-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.about-solarone-actions .btn {
  padding: 12px 18px;
}

.about-solarone-actions .secondary {
  border-color: rgba(255,255,255,0.24);
}

.about-solarone-actions .card-link {
  padding: 8px 0;
}

.legal-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(229,57,53,0.08), transparent 26%),
    linear-gradient(180deg, #050607 0%, #020203 100%);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 26px 80px 34px;
  isolation: isolate;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 0%, rgba(229,57,53,0.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 0;
}

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

.legal-hero-content {
  max-width: 1240px;
  margin: 42px auto 0;
  display: grid;
  gap: 18px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.05;
  max-width: 860px;
}

.legal-hero-copy {
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-meta-item {
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-meta-item span {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-meta-item strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.35;
}

.legal-main {
  padding: 0 80px 86px;
}

.legal-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.legal-card,
.legal-aside-card {
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
    rgba(8,9,11,0.95);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.legal-card {
  display: grid;
  gap: 24px;
}

.legal-section + .legal-section {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.legal-section h2,
.legal-aside-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.legal-section p,
.legal-aside-card p,
.legal-aside-card li {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-size: 15px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-left: 18px;
}

.legal-aside {
  display: grid;
  gap: 16px;
}

.legal-aside-card .btn {
  margin-top: 18px;
}

.legal-footer .site-footer-column {
  min-width: 0;
}

.legal-footer .site-footer-links a {
  word-break: keep-all;
}

.dropdown {
  position: relative;
  z-index: 22;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.dropdown:hover,
.dropdown:focus-within {
  z-index: 30;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 12, 14, 0.84);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 6px;
  display: none;
  min-width: 168px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  pointer-events: auto;
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu,
.dropdown.is-open > .dropdown-menu {
  display: grid;
  gap: 2px;
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  line-height: 1.35;
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
  z-index: 1201;
  pointer-events: auto;
}

.dropdown-menu a:hover {
  color: #e53935;
  background: rgba(229, 57, 53, 0.09);
}

.mega-menu {
  min-width: 620px;
  padding: 10px;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.mega-category {
  padding: 4px 10px 4px 12px;
  display: grid;
  gap: 2px;
}

.mega-category + .mega-category {
  border-left: 1px solid rgba(255,255,255,0.1);
}

.mega-category h4 {
  margin: 2px 0 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e53935;
}

.mega-category a {
  padding: 8px 8px;
  font-size: 13px;
  color: rgba(234,238,244,0.9);
  border-radius: 6px;
}

.dropdown-products > .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
}

.hero-content {
  max-width: 760px;
  margin-top: 24px;
}

h1 {
  font-size: 62px;
  line-height: 1.02;
  margin-bottom: 10px;
  max-width: 820px;
}

h1 span {
  display: block;
  color: white;
  font-size: inherit;
  line-height: inherit;
  margin-top: 0;
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  max-width: 720px;
}

.description {
  font-size: 17px;
  line-height: 1.65;
  max-width: 660px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.9);
}

.why-section {
  padding: 64px 80px 80px;
  background: rgba(0, 0, 0, 0.45);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e53935;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 40px;
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 700px;
}

.section-heading p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  margin: 0;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.why-card {
  flex: 1 1 calc(50% - 9px);
  min-width: 240px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

.why-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #e53935;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.stats {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  position: relative;
  flex: 0 0 auto;
  min-width: 150px;
}

.stat-item + .stat-item {
  margin-left: 12px;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 2px;
  background: rgba(255,255,255,0.35);
}

.stat-item {
  position: relative;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.stat-tag {
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-text strong {
  font-size: 26px;
  line-height: 1.05;
}

.stat-text strong[data-counter] {
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}

.stat-text span {
  margin: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.stat-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: #e53935;
  stroke-width: 2.4;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-icon [stroke] {
  stroke: currentColor;
}

.stat-icon [fill="none"] {
  fill: none;
}

.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.primary {
  background: #e53935;
  color: white;
}

.primary:hover {
  background: #d32f2f;
}

.secondary {
  border: 1px solid white;
  color: white;
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.offer-section {
  position: relative;
  padding: 104px 80px 100px;
  background: transparent;
}

.offer-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.offer-intro {
  position: relative;
  max-width: 700px;
}

.offer-intro::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -24px;
  width: min(560px, 78vw);
  height: 170px;
  border-radius: 999px;
  z-index: -1;
  background: radial-gradient(ellipse at left center, rgba(229,57,53,0.07) 0%, rgba(229,57,53,0.04) 42%, rgba(229,57,53,0) 74%);
}

.offer-intro .section-kicker {
  color: #e53935;
  letter-spacing: 0.16em;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.offer-intro h2 {
  font-size: 60px;
  line-height: 1.02;
  margin: 0;
  color: #fff;
}

.offer-intro p {
  margin-top: 20px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
}

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

.offer-card {
  background: #111316;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  border-color: rgba(229, 57, 53, 0.3);
}

.card-image {
  height: 220px;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.7)),
    url("首页Assembly Line 配图.webp") center/cover no-repeat;
}

.card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.offer-card h3 {
  margin: 0;
  font-size: 24px;
  color: #fff;
}

.offer-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  flex: 1;
}

.card-link {
  color: #e53935;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
}

.card-anchor {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card-anchor:focus-visible {
  outline: 2px solid rgba(255, 82, 76, 0.92);
  outline-offset: 4px;
}

.why-solarone-section {
  padding: 18px 80px 58px;
  background: #020203;
}

.why-solarone-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.why-solarone-intro {
  max-width: 820px;
}

.why-solarone-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.1vw, 44px);
  line-height: 1.14;
}

.why-solarone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,16,20,0.96), rgba(9,10,12,0.96));
}

.why-solarone-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  min-height: 162px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-solarone-item:nth-child(3n) {
  border-right: 0;
}

.why-solarone-item:nth-child(n + 4) {
  border-bottom: 0;
}

.why-solarone-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(229,57,53,0.42);
  background: rgba(229,57,53,0.08);
  color: #ff5b57;
  display: grid;
  place-items: center;
}

.why-solarone-icon svg {
  width: 20px;
  height: 20px;
}

.why-solarone-item h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 750;
}

.why-solarone-item p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.58;
}

.featured-products-section {
  padding: 64px 80px 74px;
  background: linear-gradient(180deg, #0a0b0d 0%, #060708 100%);
}

.featured-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.featured-intro {
  max-width: 680px;
}

.featured-intro .section-kicker {
  color: #e53935;
  letter-spacing: 0.16em;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.featured-intro h2 {
  font-size: 48px;
  line-height: 1.08;
  margin: 0;
  color: #ffffff;
  font-weight: 800;
}

.featured-intro p {
  margin-top: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.72;
  max-width: 640px;
}

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

.featured-card {
  background: #111316;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(229, 57, 53, 0.45);
}

.featured-card--large {
  grid-column: auto;
}

.featured-card {
  grid-column: auto;
}

.featured-card-image {
  min-height: 232px;
  height: 232px;
  background: #16181b;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
  filter: brightness(1.08) contrast(1.05);
}

.featured-card:hover .featured-card-image {
  transform: scale(1.05);
}

.featured-card-image--line {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.5)),
    url("首页Assembly Line 配图.webp");
}

.featured-card-image--connector {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.5)),
    url("第三屏连接器.webp");
}

.featured-card-image--cable {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.5)),
    url("第三屏裁剥设备.webp");
}

.featured-card-image--snap {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.5)),
    url("第三屏卡扣机.webp");
}

.featured-card-image--winding {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.5)),
    url("第三屏绕线机.webp");
}

.featured-card-image--custom {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.5)),
    url("第三屏客制化图片.webp");
}

.featured-card-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.featured-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 760;
  color: #ffffff;
  line-height: 1.18;
}

.featured-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.16em;
  max-height: 3.16em;
  flex: 0;
  max-width: 100%;
}

.featured-card .card-link {
  color: #e53935;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  transition: color 0.35s ease;
}

.featured-card .card-link::after {
  content: '→';
  display: inline-block;
  transition: transform 0.35s ease;
}

.featured-card:hover .card-link {
  color: #ff6767;
}

.featured-card:hover .card-link::after {
  transform: translateX(6px);
}

@media (max-width: 1080px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card--large {
    grid-column: auto;
  }
}

@media (max-width: 840px) {
  .featured-grid {
    gap: 16px;
  }

  .featured-card {
    min-height: auto;
  }

  .featured-card-image {
    min-height: 220px;
    height: 220px;
  }
}

@media (max-width: 640px) {
  .featured-products-section {
    padding: 52px 20px 64px;
  }

  .featured-wrap {
    gap: 20px;
  }

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

  .featured-card-body {
    padding: 16px;
  }

  .featured-card-image {
    min-height: 224px;
    height: 224px;
  }
}

.featured-cta-section {
  padding: 64px 80px 90px;
  background: linear-gradient(180deg, rgba(10,11,13,0.95), rgba(6,7,8,0.98));
}

.featured-cta-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(229, 57, 53, 0.16);
  padding-top: 40px;
}

.featured-cta-copy {
  max-width: 780px;
}

.featured-cta-copy .section-kicker {
  color: #e53935;
  letter-spacing: 0.16em;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.featured-cta-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  color: #ffffff;
  font-weight: 800;
}

.featured-cta-copy p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  max-width: 680px;
  font-size: 18px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  background: #ff5c5c;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(229, 57, 53, 0.25);
}

@media (max-width: 860px) {
  .featured-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.card-image {
  height: 240px;
  background: #111316;
}

.card-image--line {
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("首页Assembly Line 配图.webp") center/cover no-repeat;
}

.card-image--production {
  background: #111316;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image--production img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: rotate(90deg);
  transform-origin: center center;
}

.card-image--packaging {
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("主页包装图.webp") center/cover no-repeat;
}

.card-image--qa {
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("主页 QA 图.webp") center/cover no-repeat;
}

.card-image--standalone {
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("首页 standalone 图片.webp") center/cover no-repeat;
}

.card-image--engineer {
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("工程师图片.webp") center/cover no-repeat;
}

.card-image--dark {
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.6)),
    #111316;
}

.offer-card {
  background: #111316;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

@media (max-width: 960px) {
  .offer-cards {
    grid-template-columns: 1fr;
  }
}

.feature-media-large::before,
.feature-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.5));
  border-radius: inherit;
}

@media (max-width: 960px) {
  .offer-cards,
  .offer-feature-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .offer-section {
    padding: 72px 20px 60px;
  }

  .offer-wrap {
    gap: 30px;
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
  }

  .hero {
    padding: 30px 20px 50px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 0;
    gap: 32px;
    padding: 42px 0 64px;
  }

  .home-hero-media {
    min-height: 260px;
    max-height: 300px;
  }

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

  .hero .line-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 0;
    padding-top: 4px;
    max-width: 100%;
  }

  .hero .line-metric {
    padding: 0 10px;
  }

  .hero .line-metric:nth-child(odd) {
    border-left: 0;
  }

  .hero .hero-metric-value {
    font-size: clamp(24px, 7vw, 40px);
  }

  .hero .hero-stat-item--text .hero-metric-value--text {
    font-size: clamp(16px, 5.2vw, 30px);
  }

  .home-hero-copy .hero-title span:nth-child(2) {
    white-space: normal;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 52px);
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .stats {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .stats::-webkit-scrollbar {
    display: none;
  }

  .offer-intro h2 {
    font-size: 32px;
  }

  .why-solarone-section {
    padding: 8px 20px 48px;
  }

  .why-solarone-wrap {
    gap: 18px;
  }

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

  .why-solarone-item {
    border-right: 0;
    min-height: auto;
    padding: 18px;
  }

  .why-solarone-item:nth-child(n + 4) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .why-solarone-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 960px) {
  .offer-cards {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 30px 24px 50px;
  }

  .home-hero-media {
    max-height: 320px;
  }

  .line-hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero .line-hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero .line-metric {
    border-left: 0 !important;
    padding: 0;
  }

  .hero .hero-metric-icon {
    width: 34px;
    height: 34px;
  }

  .hero .hero-metric-icon svg {
    width: 30px;
    height: 30px;
  }

  .line-hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

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

  html {
    scroll-padding-top: 88px;
  }

  .offer-section,
  .why-section {
    padding: 64px 20px 60px;
  }

  .hero-content,
  .offer-wrap {
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions .btn {
    padding: 14px 22px;
  }

  .explore-nav {
    padding: 0 20px;
  }

  .explore-nav::before {
    top: -66px;
    height: 66px;
  }

  .explore-nav-inner {
    padding: 10px 12px;
    gap: 0;
    border-radius: 0 0 14px 14px;
  }

  .explore-nav-label {
    display: none;
  }

  .explore-nav-links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .explore-nav-links::-webkit-scrollbar {
    display: none;
  }

  .explore-nav-link {
    flex: 0 0 auto;
    padding: 8px 14px 10px 0;
    margin-right: 12px;
    font-size: 12px;
  }

  .explore-nav-link:last-child {
    margin-right: 0;
  }

  .page-explore-compact .explore-nav {
    padding: 0 28px;
  }

  .page-explore-compact .explore-nav-inner {
    width: 100%;
    max-width: none;
    gap: 0;
    padding: 12px 14px;
  }

  .page-explore-compact .explore-nav-label {
    display: none;
  }

  .page-explore-compact .explore-nav-links {
    width: 100%;
    flex: 1 1 auto;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .page-explore-compact .explore-nav-links::-webkit-scrollbar {
    display: none;
  }

  .page-explore-compact .explore-nav-link {
    flex: 0 0 auto;
    font-size: 11px;
    padding: 7px 0 9px;
    margin-right: 0;
  }

  .page-explore-compact .explore-nav-link:last-child {
    margin-right: 0;
  }

  .nav-links {
    gap: 16px;
  }

  .offer-intro h2 {
    font-size: 32px;
  }

  .about-solarone-section {
    padding: 20px 20px 72px;
  }

  .about-solarone-panel {
    padding: 20px;
  }

  .about-solarone-actions {
    gap: 12px;
  }
}

@media (max-width: 960px) {
  .explore-nav-inner {
    gap: 12px;
  }

  .explore-nav-link {
    font-size: 12px;
  }
}

@media (max-width: 1080px) {
  .why-solarone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-solarone-item {
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .why-solarone-item:nth-child(3n) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .why-solarone-item:nth-child(2n) {
    border-right: 0;
  }

  .why-solarone-item:nth-child(n + 5) {
    border-bottom: 0;
  }
}

.global-projects-section {
  padding: 80px 24px 120px;
  background: #090a0c;
}

.global-projects-section .section-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.global-projects-section .section-heading .section-kicker {
  display: block;
  width: 100%;
  text-align: center;
  color: #e53935;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.global-projects-section .section-heading h2 {
  font-size: 44px;
  max-width: none;
  margin: 0 auto 14px;
  text-align: center;
}

.global-projects-section .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  text-align: center;
}

.global-map {
  position: relative;
  max-width: 1160px;
  height: 520px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background: #090a0c;
  box-shadow: inset 0 0 180px rgba(0,0,0,0.62);
}

.global-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
  opacity: 0.20;
  filter: grayscale(1) brightness(0.20) contrast(0.58) saturate(0.16);
  transform: scale(1.04);
}

.global-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 61, 49, 0.08), transparent 16%),
    radial-gradient(circle at 70% 40%, rgba(255, 61, 49, 0.04), transparent 12%),
    radial-gradient(circle at center, rgba(255,255,255,0.015), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,0.34), rgba(0,0,0,0.82));
  pointer-events: none;
  z-index: 1;
}

.global-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 44%, rgba(0,0,0,0.84) 100%);
  pointer-events: none;
  z-index: 1;
}

.world-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.map-contour path {
  fill: none;
  stroke: rgba(255,255,255,0.028);
  stroke-width: 1;
  opacity: 0.12;
}

.map-bright-dots circle {
  fill: rgba(255,255,255,0.05);
  opacity: 0.12;
  filter: none;
}

.map-connection-tail {
  fill: none;
  stroke: rgba(255, 82, 74, 0.12);
  stroke-width: 1.8;
  opacity: 0.18;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(1px);
}

.map-connection {
  fill: none;
  stroke: #ff5246;
  stroke-width: 1.1;
  opacity: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 72, 58, 0.8)) drop-shadow(0 0 5px rgba(255, 120, 110, 0.28));
  stroke-dasharray: 9999;
  stroke-dashoffset: 9999;
  animation: draw-line 4.2s ease-in-out infinite;
}

.route-particle {
  filter: drop-shadow(0 0 10px rgba(255, 150, 138, 0.85));
}

.map-connection-usa {
  animation-delay: 0.4s;
  stroke-width: 1.2;
}

.map-connection-turkey {
  animation-delay: 1.0s;
  stroke-width: 1.05;
}

.map-connection-india {
  animation-delay: 1.8s;
  stroke-width: 1.15;
}

.map-connection-vietnam {
  animation-delay: 2.6s;
  stroke-width: 1.0;
}

.map-connection-malaysia {
  animation-delay: 3.4s;
  stroke-width: 1.1;
}

.map-node {
  fill: #ff6b6b;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  filter: drop-shadow(0 0 8px rgba(255, 70, 60, 0.24));
  transform-origin: center center;
}

.map-node-usa,
.map-node-turkey,
.map-node-india,
.map-node-vietnam,
.map-node-malaysia {
  animation: node-highlight 4.2s ease-in-out infinite;
}

.map-node-usa {
  animation-delay: 0.4s;
}

.map-node-turkey {
  animation-delay: 1.0s;
}

.map-node-india {
  animation-delay: 1.8s;
}

.map-node-vietnam {
  animation-delay: 2.6s;
}

.map-node-malaysia {
  animation-delay: 3.4s;
}

.map-node-china {
  fill: #ff6f66;
  stroke: rgba(255,255,255,0.28);
  stroke-width: 1.7;
  filter: drop-shadow(0 0 26px rgba(255, 76, 62, 0.62)) drop-shadow(0 0 12px rgba(255, 150, 138, 0.32));
}

.china-ambient {
  fill: rgba(255, 86, 72, 0.12);
  filter: blur(1.6px);
  animation: china-ambient 5.6s ease-in-out infinite;
}

.china-ambient-2 { animation-delay: 0.8s; }
.china-ambient-3 { animation-delay: 1.6s; }
.china-ambient-4 { animation-delay: 2.4s; }

.china-hub-glow {
  fill: rgba(255, 80, 66, 0.18);
  filter: blur(4px);
  transform-origin: 780px 170px;
  animation: china-hub-glow 4.8s ease-in-out infinite;
}

.china-radar-ring {
  fill: none;
  stroke: rgba(255, 80, 66, 0.20);
  stroke-width: 1.15;
  filter: blur(0.25px);
  transform-origin: 780px 170px;
  animation: china-radar 5.6s ease-out infinite;
}

.china-radar-ring-2 {
  animation-delay: 1.8s;
}

.china-radar-ring-3 {
  animation-delay: 3.6s;
}

@keyframes china-hub-glow {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.30;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

@keyframes china-ambient {
  0%, 100% {
    opacity: 0.12;
    transform: scale(1);
  }

  50% {
    opacity: 0.28;
    transform: scale(1.08);
  }
}

@keyframes china-radar {
  0% {
    transform: scale(0.72);
    opacity: 0.40;
  }

  70% {
    opacity: 0.16;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@keyframes node-highlight {
  0%, 75%, 100% {
    transform: scale(1);
    fill: #ff6b6b;
    stroke: rgba(255, 255, 255, 0.24);
    stroke-width: 1.1;
    filter: drop-shadow(0 0 10px rgba(255, 70, 60, 0.32));
  }

  80%, 88% {
    transform: scale(1.06);
    fill: #ff948c;
    stroke: rgba(255, 255, 255, 0.96);
    stroke-width: 1.6;
    filter: drop-shadow(0 0 16px rgba(255, 132, 112, 0.68)) drop-shadow(0 0 6px rgba(255, 90, 80, 0.44));
  }
}
.map-label {
  position: absolute;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.92), 0 0 5px rgba(255, 90, 80, 0.16);
  white-space: nowrap;
  z-index: 3;
  text-transform: uppercase;
}

.map-label-usa { top: 32.5%; left: 12.9%; transform: translateX(-50%); }
.map-label-china { top: 31%; left: 69%; transform: translate(-50%, -50%); font-size: 13px; }
.map-label-india { top: 52.5%; left: 57.2%; transform: translateX(-50%); }
.map-label-turkey { top: 33%; left: 46.7%; transform: translateX(-50%); }
.map-label-vietnam { top: 54.2%; left: 64.1%; transform: translateX(-50%); }
.map-label-malaysia { top: 66.5%; left: 67.7%; transform: translateX(-50%); }

@keyframes pop-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.86;
  }
}


.map-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.010), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.44));
  pointer-events: none;
  z-index: 1;
}

@keyframes draw-line {
  0% {
    stroke-dashoffset: 9999;
    opacity: 0.16;
  }

  40% {
    opacity: 0.72;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.94;
  }
}

.project-card-row {
  max-width: 1160px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.project-card {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 61, 49, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(18,19,22,0.98), rgba(13,14,17,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(0,0,0,0.28);
  border-color: rgba(229, 57, 53, 0.32);
}

.project-card-copy {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.project-country {
  display: inline-block;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 18px;
  font-weight: 700;
}

.project-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  color: #bfc6d3;
}

.project-achievement {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.project-card-copy::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255, 61, 49, 0.68);
  margin-bottom: 2px;
}

.project-card-copy p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 15px;
}

.project-detail {
  margin: 0;
  color: rgba(185,192,205,0.92);
  font-size: 15px;
  line-height: 1.65;
}

.metric {
  color: inherit;
  font-weight: 600;
}

.project-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e53935;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
  font-size: 14px;
}

.project-link:hover {
  color: #ff7c76;
}

.project-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.project-link:hover::after {
  transform: translateX(4px);
}

.global-network-section {
  padding: 80px 24px 120px;
  background: #090a0c;
}

.global-network-section .section-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.global-network-section .section-heading .section-kicker {
  display: block;
  width: 100%;
  text-align: center;
  color: #e53935;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.global-network-section .section-heading h2 {
  font-size: 44px;
  max-width: none;
  margin: 0 auto 14px;
  text-align: center;
}

.global-network-section .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  text-align: center;
}

.global-network-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  --glow-x: 50%;
  --glow-y: 36%;
}

.global-network-glow {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.12), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02) 36%, transparent 58%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}

.global-network-info {
  height: 100%;
  align-self: stretch;
  position: relative;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(229,57,53,0.08), transparent 32%),
    linear-gradient(180deg, rgba(14,15,17,0.98), rgba(9,10,12,0.98));
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.global-network-info::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 18%, transparent 72%, rgba(255,255,255,0.02));
  pointer-events: none;
  z-index: 3;
}

.global-network-info > * {
  position: relative;
  z-index: 4;
}

.global-network-kicker {
  display: block;
  margin-bottom: 12px;
  color: #e53935;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.global-network-country {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
}

.global-network-type {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-size: 16px;
}

.global-network-stats {
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.global-network-stats div {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.global-network-stats dt {
  color: #e53935;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.global-network-stats dd {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  font-size: 16px;
}

.global-network-link {
  position: relative;
  z-index: 4;
  margin-top: 22px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.global-network-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.global-network-link:hover {
  color: #ff6b62;
}

.global-network-link:hover::after {
  transform: translateX(4px);
}

.global-network-visual {
  position: relative;
  min-height: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 180px rgba(0,0,0,0.56), 0 24px 58px rgba(0,0,0,0.32);
  background: #090a0c;
}

.global-network-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 44% 42%, rgba(229,57,53,0.18), transparent 12%),
    radial-gradient(circle at 44% 42%, rgba(229,57,53,0.06), transparent 20%),
    linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.78));
  pointer-events: none;
  z-index: 1;
}

.global-network-bg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.24;
  filter: grayscale(1) brightness(0.22) contrast(0.68) saturate(0.14);
  transform: scale(1.04);
}

.global-network-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 44% 42%, rgba(229,57,53,0.12), transparent 14%),
    radial-gradient(circle at 44% 42%, rgba(229,57,53,0.05), transparent 24%),
    radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
  z-index: 2;
}

.global-network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}

.network-connection {
  fill: none;
  stroke: rgba(255,92,82,0.5);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: url(#network-glow);
  stroke-dasharray: 12 16;
  transition: opacity 0.35s ease, stroke 0.35s ease, stroke-width 0.35s ease;
}

.network-connection.is-active {
  opacity: 0.92;
  stroke: rgba(255,92,82,0.82);
  stroke-width: 1.9;
  animation: route-flow 8.5s linear infinite;
}

.network-node,
.network-origin,
.network-hub-core {
  fill: #ff6b62;
  stroke: rgba(255,255,255,0.2);
  stroke-width: 1.2;
}

.network-node {
  opacity: 0.5;
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

.network-node.is-active {
  opacity: 1;
  transform: scale(1.34);
  filter: drop-shadow(0 0 14px rgba(255,92,82,0.42));
  animation: node-breathe 4.8s ease-in-out infinite;
}

.network-node.is-hovered {
  transform: scale(1.2);
  filter: drop-shadow(0 0 18px rgba(255,92,82,0.48));
}

.network-node:not(.is-active) {
  opacity: 0.5;
}

.network-hub-halo {
  fill: none;
  stroke: rgba(255,92,82,0.28);
  stroke-width: 1.3;
}

.network-hub-core {
  filter: drop-shadow(0 0 18px rgba(255,92,82,0.42));
}

.network-particle {
  fill: #ff6b62;
  filter: drop-shadow(0 0 10px rgba(255,92,82,0.42));
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

@keyframes route-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -220; }
}

@keyframes node-breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.global-network-panel,
.global-network-visual,
.global-network-svg,
.network-node,
.network-origin,
.network-particle {
  transform-box: fill-box;
  transform-origin: center;
}

.global-network-markers {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.network-country-btn {
  position: absolute;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.network-country-btn::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.22), 0 0 12px rgba(255,92,82,0.18);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.network-country-btn:hover::before,
.network-country-btn:focus-visible::before,
.network-country-btn.is-active::before {
  transform: scale(1.25);
  background: #ff6b62;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.24), 0 0 16px rgba(255,92,82,0.36);
}

.network-country-btn:hover,
.network-country-btn:focus-visible {
  cursor: pointer;
}

.network-country-btn.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,92,82,0.35);
  animation: country-ring 2.8s ease-out infinite;
}

.network-country-btn-usa { top: 28.9%; left: 15.8%; }
.network-country-btn-india { top: 52.1%; left: 61.7%; }
.network-country-btn-turkey { top: 20.5%; left: 54.2%; }
.network-country-btn-vietnam { top: 68.9%; left: 48.8%; }
.network-country-btn-malaysia { top: 79.7%; left: 70.8%; }
.network-country-btn-china { top: 44.7%; left: 39.2%; }

.network-country-label {
  position: absolute;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
  white-space: nowrap;
  pointer-events: none;
  transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease, text-shadow 0.25s ease;
}

.network-country-label.is-active {
  color: #ffffff;
  animation: label-pop 0.42s ease;
}

.network-country-label.is-hovered {
  color: #ffffff;
  transform: translateX(12px) scale(1.08);
  text-shadow: 0 0 14px rgba(255,92,82,0.3), 0 2px 10px rgba(0,0,0,0.9);
}

.network-country-label-usa {
  top: 28.9%;
  left: 16.8%;
  transform: translateX(12px);
  font-size: 13px;
}

.network-country-label-turkey { top: 18.8%; left: 54.2%; transform: translateX(12px); }
.network-country-label-india { top: 51%; left: 61.7%; transform: translateX(12px); }
.network-country-label-vietnam { top: 68.8%; left: 49.8%; transform: translateX(12px); }
.network-country-label-malaysia { top: 78.4%; left: 70.8%; transform: translateX(12px); }

.network-hub-label {
  position: absolute;
  left: 39.2%;
  top: 44.7%;
  transform: translateX(18px);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.network-hub-label.is-hovered {
  color: #ffffff;
  transform: translateX(18px) scale(1.05);
  text-shadow: 0 0 12px rgba(255,92,82,0.32), 0 2px 10px rgba(0,0,0,0.9);
}

@keyframes label-pop {
  0% {
    transform: translateX(12px) scale(0.94);
    text-shadow: 0 0 0 rgba(255,92,82,0);
  }

  55% {
    transform: translateX(12px) scale(1.1);
    text-shadow: 0 0 16px rgba(255,92,82,0.34), 0 2px 10px rgba(0,0,0,0.9);
  }

  100% {
    transform: translateX(12px) scale(1);
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
  }
}

.network-country-label-usa.is-active,
.network-country-label-turkey.is-active,
.network-country-label-india.is-active,
.network-country-label-vietnam.is-active,
.network-country-label-malaysia.is-active {
  animation-name: label-pop;
}

.global-network-panel.is-updated .global-network-glow {
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03) 36%, transparent 58%);
}

@keyframes country-ring {
  0% { transform: scale(0.9); opacity: 0.72; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes route-pulse {
  0% { filter: drop-shadow(0 0 8px rgba(255,92,82,0.28)); }
  50% { filter: drop-shadow(0 0 18px rgba(255,92,82,0.56)); }
  100% { filter: drop-shadow(0 0 8px rgba(255,92,82,0.28)); }
}

.network-connection.replay-route {
  opacity: 0.94;
  animation: route-flow 2.4s linear 1, route-pulse 2.4s ease-in-out 1;
}

.network-trace-particle {
  fill: #ffd5cf;
  filter: drop-shadow(0 0 12px rgba(255,146,136,0.9));
}

@media (max-width: 960px) {
  .global-map {
    height: 420px;
  }

  .project-card-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .global-projects-section {
    padding: 60px 18px 80px;
  }

  .global-map {
    height: 320px;
  }

  .project-card {
    min-height: auto;
  }

  .project-card-copy {
    padding: 22px;
  }

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

  .global-network-visual {
    min-height: 340px;
  }
}

.technical-articles-section {
  padding: 72px 80px 96px;
  background:
    radial-gradient(circle at 8% 0%, rgba(229, 57, 53, 0.09), transparent 36%),
    linear-gradient(180deg, #090a0b 0%, #050607 100%);
}

.technical-articles-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.technical-articles-section .section-heading {
  margin-bottom: 30px;
}

.article-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255, 76, 64, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(18,19,22,0.99), rgba(13,14,17,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 57, 53, 0.34);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.article-thumb {
  height: 74px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 96, 90, 0.24) 0 18%, rgba(255, 96, 90, 0.08) 26%, transparent 54%),
    radial-gradient(circle at 30% 42%, rgba(255, 132, 122, 0.22) 0 1.1px, transparent 1.1px),
    radial-gradient(circle at 46% 28%, rgba(255, 124, 114, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 67% 54%, rgba(255, 118, 109, 0.14) 0 1.2px, transparent 1.2px),
    linear-gradient(135deg, #2a0d0d 0%, #431616 56%, rgba(67, 22, 22, 0) 100%);
}

.article-thumb-cycle {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 96, 90, 0.28) 0 18%, rgba(255, 96, 90, 0.1) 26%, transparent 54%),
    radial-gradient(circle at 30% 42%, rgba(255, 132, 122, 0.22) 0 1.1px, transparent 1.1px),
    radial-gradient(circle at 46% 28%, rgba(255, 124, 114, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 67% 54%, rgba(255, 118, 109, 0.14) 0 1.2px, transparent 1.2px),
    linear-gradient(135deg, #2a0d0d 0%, #431616 56%, rgba(67, 22, 22, 0) 100%);
}

.article-thumb-inspection {
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 98, 92, 0.28) 0 18%, rgba(255, 98, 92, 0.1) 26%, transparent 56%),
    radial-gradient(circle at 24% 50%, rgba(255, 132, 122, 0.2) 0 1px, transparent 1px),
    radial-gradient(circle at 58% 38%, rgba(255, 124, 114, 0.16) 0 1.1px, transparent 1.1px),
    radial-gradient(circle at 78% 56%, rgba(255, 118, 109, 0.15) 0 1.2px, transparent 1.2px),
    linear-gradient(135deg, #2a0d0d 0%, #431616 56%, rgba(67, 22, 22, 0) 100%);
}

.article-thumb-optimization {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 98, 92, 0.28) 0 18%, rgba(255, 98, 92, 0.1) 26%, transparent 56%),
    radial-gradient(circle at 28% 54%, rgba(255, 132, 122, 0.2) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 30%, rgba(255, 124, 114, 0.16) 0 1.1px, transparent 1.1px),
    radial-gradient(circle at 82% 46%, rgba(255, 118, 109, 0.15) 0 1.2px, transparent 1.2px),
    linear-gradient(135deg, #2a0d0d 0%, #431616 56%, rgba(67, 22, 22, 0) 100%);
}

.article-thumb-stability,
.article-thumb-servo,
.article-thumb-process,
.article-thumb-oee {
  background:
    linear-gradient(90deg, rgba(255,92,82,0.22) 0 1px, transparent 1px 28px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 28px),
    radial-gradient(circle at 76% 34%, rgba(255, 96, 90, 0.25), transparent 22%),
    linear-gradient(135deg, #17191d 0%, #321313 100%);
  background-size: auto, auto, auto, auto;
}

.article-thumb-servo {
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.16) 0 2px, transparent 2px),
    radial-gradient(circle at 42% 50%, rgba(255,92,82,0.28) 0 3px, transparent 3px),
    radial-gradient(circle at 64% 50%, rgba(255,255,255,0.16) 0 2px, transparent 2px),
    linear-gradient(135deg, #17191d 0%, #321313 100%);
}

.article-thumb-process {
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255,92,82,0.3) 42% 46%, transparent 46%),
    radial-gradient(circle at 72% 30%, rgba(255,255,255,0.14), transparent 18%),
    linear-gradient(135deg, #17191d 0%, #321313 100%);
}

.article-thumb-oee {
  background:
    conic-gradient(from 225deg at 22% 58%, rgba(255,92,82,0.5), rgba(255,255,255,0.1), rgba(255,92,82,0.2)),
    linear-gradient(135deg, #17191d 0%, #321313 100%);
}

.article-card-copy {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.article-category {
  color: #e53935;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-card h3 {
  margin: 0;
  color: #f4f7fc;
  font-size: 23px;
  line-height: 1.2;
}

.article-card p {
  margin: 0;
  color: rgba(222,228,238,0.86);
  font-size: 14px;
  line-height: 1.55;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.article-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(236,242,252,0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.25s ease;
}

.article-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.article-link:hover {
  color: #e53935;
}

.article-link:hover::after {
  transform: translateX(4px);
}

.article-card:hover .article-link {
  color: #e53935;
}

.article-card:hover .article-link::after {
  transform: translateX(4px);
}

.technical-articles-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.technical-articles-btn {
  border-color: rgba(255,255,255,0.25);
  color: rgba(242,245,250,0.95);
}

.technical-articles-btn::after {
  content: ' →';
}

.technical-articles-btn:hover {
  border-color: rgba(229,57,53,0.52);
  color: #e53935;
}

.home-knowledge-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.knowledge-topic-panel,
.knowledge-feature-panel {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(229,57,53,0.12), transparent 34%),
    linear-gradient(180deg, rgba(18,19,22,0.96), rgba(8,9,11,0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.knowledge-topic-panel {
  padding: 24px;
}

.knowledge-panel-heading {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.knowledge-panel-heading span,
.knowledge-feature-label {
  color: #ff5d55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.knowledge-panel-heading p {
  margin: 0;
  max-width: 760px;
  color: rgba(225,230,238,0.82);
  font-size: 15px;
  line-height: 1.65;
}

.knowledge-topic-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.knowledge-topic-link {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left-color: rgba(229,57,53,0.64);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(229,57,53,0.12), rgba(229,57,53,0.02) 38%, rgba(255,255,255,0.02));
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.knowledge-topic-link:hover {
  transform: translateX(4px);
  border-color: rgba(229,57,53,0.46);
  background:
    linear-gradient(90deg, rgba(229,57,53,0.18), rgba(229,57,53,0.05) 42%, rgba(255,255,255,0.03));
}

.knowledge-topic-index {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(229,57,53,0.52);
  border-radius: 12px;
  color: #ff625b;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.knowledge-topic-link strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.knowledge-topic-link em {
  display: block;
  margin-top: 5px;
  color: rgba(218,225,236,0.76);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.knowledge-feature-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.knowledge-feature-link {
  display: grid;
  gap: 6px;
  padding: 16px 16px 15px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.knowledge-feature-link:hover {
  transform: translateY(-2px);
  border-color: rgba(229,57,53,0.42);
  background: rgba(229,57,53,0.08);
}

.knowledge-feature-link strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
}

.knowledge-feature-link span {
  color: rgba(220,226,236,0.78);
  font-size: 14px;
  line-height: 1.5;
}

.knowledge-feature-panel .technical-articles-btn {
  margin-top: auto;
  justify-content: center;
}

.case-studies-section,
.industry-knowledge-section {
  padding: 76px 80px 98px;
}

.case-studies-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(229,57,53,0.08), transparent 34%),
    linear-gradient(180deg, #050607 0%, #090a0c 100%);
}

.industry-knowledge-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,0.04), transparent 34%),
    linear-gradient(180deg, #090a0c 0%, #040506 100%);
}

.case-studies-wrap,
.industry-knowledge-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.case-study-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(229,57,53,0.12), transparent 34%),
    linear-gradient(180deg, rgba(17,18,21,0.98), rgba(9,10,12,0.98));
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-study-card--featured {
  grid-row: span 2;
  min-height: 682px;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-study-meta span {
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.case-study-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.08;
  letter-spacing: 0;
}

.case-study-card:not(.case-study-card--featured) h3 {
  font-size: 24px;
  line-height: 1.18;
}

.case-study-body {
  display: grid;
  gap: 12px;
}

.case-study-body p {
  margin: 0;
  color: rgba(224,229,238,0.86);
  font-size: 15px;
  line-height: 1.7;
}

.case-study-body strong {
  color: #ff6b62;
}

.case-study-link,
.knowledge-link {
  margin-top: auto;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.case-study-link::after,
.knowledge-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.case-study-link:hover,
.knowledge-link:hover {
  color: #ff6b62;
}

.case-study-link:hover::after,
.knowledge-link:hover::after {
  transform: translateX(4px);
}

.case-study-card:hover .case-study-link,
.knowledge-card:hover .knowledge-link {
  color: #ff6b62;
}

.case-study-card:hover .case-study-link::after,
.knowledge-card:hover .knowledge-link::after {
  transform: translateX(4px);
}

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

.knowledge-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18,19,22,0.98), rgba(10,11,13,0.98));
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.knowledge-type {
  color: #e53935;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.knowledge-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.16;
}

.knowledge-card p {
  margin: 0;
  color: rgba(222,228,238,0.84);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .article-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-grid,
  .home-knowledge-showcase,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card--featured {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .technical-articles-section,
  .case-studies-section,
  .industry-knowledge-section {
    padding: 58px 18px 76px;
  }

  .article-card-row {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: 296px;
  }

  .article-card h3 {
    font-size: 20px;
  }

  .case-study-card,
  .case-study-card--featured,
  .knowledge-card {
    min-height: auto;
    padding: 22px;
  }

  .knowledge-card h3,
  .case-study-card:not(.case-study-card--featured) h3 {
    font-size: 21px;
  }

  .knowledge-topic-panel,
  .knowledge-feature-panel {
    padding: 18px;
    border-radius: 16px;
  }

  .knowledge-topic-link {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .knowledge-topic-index {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .knowledge-topic-link strong,
  .knowledge-feature-link strong {
    font-size: 16px;
  }
}

.latest-news-section {
  padding: 72px 80px 96px;
  background:
    radial-gradient(circle at 18% 0%, rgba(229, 57, 53, 0.05), transparent 34%),
    linear-gradient(180deg, #070809 0%, #040506 100%);
}

.latest-news-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.latest-news-section .section-heading {
  margin-bottom: 28px;
}

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

.news-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(229,57,53,0.88), rgba(229,57,53,0.1));
}

.news-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 188px) minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 16px 8px 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.news-item::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.12);
}

.news-item:hover {
  transform: translateX(1px);
  border-color: rgba(229,57,53,0.18);
}

.news-date-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 0 16px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.news-date-line {
  color: #e53935;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.news-date-category {
  color: rgba(236,242,252,0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-item-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-category {
  color: #e53935;
  font-weight: 700;
}

.news-item h3 {
  margin: 0;
  color: #f4f7fc;
  font-size: 20px;
  line-height: 1.18;
}

.news-excerpt {
  margin: 0;
  color: rgba(222,228,238,0.86);
  font-size: 14px;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(236,242,252,0.88);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}

.news-link:hover {
  color: #e53935;
  transform: translateX(4px);
}

.latest-news-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.latest-news-btn {
  border-color: rgba(255,255,255,0.25);
  color: rgba(242,245,250,0.95);
}

.latest-news-btn:hover {
  border-color: rgba(229,57,53,0.52);
  color: #e53935;
}

.site-footer {
  position: relative;
  padding: 72px 80px 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(229,57,53,0.1), transparent 28%),
    linear-gradient(180deg, #070809 0%, #020203 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.28;
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 1.35fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.site-footer-column {
  min-width: 0;
}

.site-footer-heading {
  margin: 0 0 18px;
  color: #e53935;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer-brand {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.site-footer-company {
  margin: 12px 0 0;
  max-width: 320px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer-description {
  margin: 22px 0 0;
  max-width: 360px;
  color: rgba(232,236,244,0.82);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.site-footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.035);
  transition: color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
  color: #e53935;
  border-color: rgba(229,57,53,0.55);
  background: rgba(229,57,53,0.08);
  transform: scale(1.12);
  outline: none;
}

.site-footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer-links,
.site-footer-service-list,
.site-footer-legal {
  display: grid;
  gap: 10px;
}

.site-footer-links a,
.site-footer-legal a,
.site-footer-contact a {
  color: rgba(238,242,248,0.78);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer-links a:hover,
.site-footer-legal a:hover,
.site-footer-contact a:hover {
  color: #ffffff;
}

.site-footer-links a:hover {
  transform: translateX(3px);
}

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

.site-footer-contact-block {
  display: grid;
  gap: 7px;
}

.site-footer-contact-label {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-address {
  margin: 0;
  color: rgba(232,236,244,0.82);
  font-style: normal;
  line-height: 1.7;
  font-size: 14px;
}

.site-footer-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-service-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: rgba(238,242,248,0.84);
  font-size: 15px;
}

.site-footer-service-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(229,57,53,0.16);
  border: 1px solid rgba(229,57,53,0.34);
  font-size: 14px;
  line-height: 1;
}

.site-footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer-copyright {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer-legal {
  grid-auto-flow: column;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-item {
    grid-template-columns: minmax(150px, 170px) minmax(0, 1fr);
    padding-right: 0;
  }

  .news-link {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 58px 18px 24px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-legal {
    grid-auto-flow: row;
    gap: 10px;
  }

  .latest-news-section {
    padding: 58px 18px 76px;
  }

  .news-timeline {
    padding-left: 18px;
  }

  .news-timeline::before {
    left: 4px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .news-item::before {
    left: -16px;
  }

  .news-date-panel {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 10px;
  }

  .news-link {
    grid-column: auto;
  }

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

  .global-network-info {
    height: auto;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .global-network-visual {
    min-height: 360px;
    border-radius: 20px;
  }

  .network-country-label {
    font-size: 10px;
  }

  .network-country-label-usa { top: 23%; left: 69%; }
  .network-country-label-turkey { top: 22%; left: 55%; }
  .network-country-label-india { top: 57%; left: 62%; }
  .network-country-label-vietnam { top: 69%; left: 49%; }
  .network-country-label-malaysia { top: 76%; left: 72%; }
}

  @media (max-width: 768px) {
    html {
      scroll-padding-top: 84px;
    }

    .hero,
    .connector-hero,
    .about-page .about-hero,
    .contact-page .contact-hero,
    .legal-hero,
    .technical-page .technical-hero,
    .case-page .case-hero,
    .discussion-page .discussion-hero {
      min-height: 60vh;
      max-height: 65vh;
      padding: 14px 18px 28px;
    }

    .hero-video,
    .hero .hero-video,
    .about-page .about-hero-media,
    .contact-page .contact-hero-media,
    .technical-page .technical-hero-media,
    .case-page .case-hero-media,
    .discussion-page .discussion-hero-media,
    .connector-hero-media img {
      object-fit: cover;
      object-position: center 34%;
    }

    .hero-content,
    .about-page .about-hero-content,
    .contact-page .contact-hero-content,
    .legal-hero-content,
    .technical-page .technical-hero-content,
    .case-page .case-hero-content,
    .discussion-page .discussion-hero-content,
    .connector-hero-copy {
      max-width: 100%;
      padding-top: 12px;
    }

    .hero-title,
    .about-page .about-hero-content h1,
    .contact-page .contact-hero-content h1,
    .technical-page .technical-hero-content h1,
    .case-page .case-hero-content h1,
    .discussion-page .discussion-hero-content h1,
    .connector-hero-copy h1 {
      font-size: clamp(30px, 8.6vw, 42px);
      line-height: 1.04;
    }

    .hero-subtitle,
    .hero-description,
    .about-page .about-hero-subtitle,
    .contact-page .contact-hero-subtitle,
    .technical-page .technical-hero-subtitle,
    .case-page .case-hero-subtitle,
    .discussion-page .discussion-hero-subtitle,
    .connector-hero-copy h2,
    .connector-hero-copy p {
      font-size: 15px;
      line-height: 1.62;
    }

    .offer-section,
    .featured-products-section,
    .why-solarone-section,
    .global-network-section,
    .technical-articles-section,
    .case-studies-section,
    .latest-news-section,
    .about-page .section-block,
    .contact-page .section-block,
    .technical-page .section-block,
    .case-page .section-block,
    .discussion-page .section-block {
      padding: 56px 18px 68px !important;
    }

    .home-hero-grid,
    .connector-hero-grid,
    .connector-overview-grid,
    .legal-layout,
    .technical-layout,
    .case-layout,
    .discussion-layout,
    .contact-map-section,
    .global-network-panel,
    .why-solarone-grid,
    .offer-cards,
    .featured-grid,
    .case-study-grid,
    .article-card-row,
    .contact-page .form-grid--two,
    .contact-page .contact-info-grid,
    .contact-page .steps-grid,
    .about-page .story-grid,
    .about-page .profile-grid,
    .about-page .honors-grid,
    .about-page .about-video-grid,
    .site-footer-grid {
      grid-template-columns: 1fr !important;
    }

    .btn,
    a.btn,
    button.btn,
    .hero-actions .btn,
    .line-hero-actions .btn {
      min-height: 44px;
      padding: 12px 18px;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      touch-action: manipulation;
    }

    .hero-actions,
    .line-hero-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

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

    .offer-card,
    .featured-card,
    .technical-article-card,
    .case-detail-card,
    .discussion-card,
    .contact-info-card,
    .step-card,
    .honors-card,
    .about-video-card,
    .profile-media-card,
    .news-item {
      width: 100%;
    }

    .connector-hero-media,
    .about-page .story-media,
    .about-page .profile-media-card,
    .about-page .about-video-card,
    .contact-page .global-network-visual,
    .legal-card,
    .legal-aside-card {
      border-radius: 16px;
      overflow: hidden;
    }

    .explore-nav,
    .page-explore-compact .explore-nav {
      padding: 0 16px;
    }

    .legal-hero {
      padding: 14px 18px 18px;
    }

    .legal-main {
      padding: 0 18px 62px;
    }

    .legal-layout {
      gap: 14px;
    }

    .legal-card,
    .legal-aside-card {
      padding: 20px 16px;
    }

    .legal-section h2,
    .legal-aside-card h2 {
      font-size: 18px;
    }

    .legal-section p,
    .legal-aside-card p,
    .legal-aside-card li {
      font-size: 14px;
      line-height: 1.7;
    }

    .legal-meta {
      gap: 8px;
    }

    .legal-meta-item {
      min-width: 0;
      flex: 1 1 160px;
    }
  }

/* Production mobile safeguards: prevent accidental horizontal scroll and iOS form zoom. */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

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

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }

  iframe,
  table {
    max-width: 100%;
  }
}
