/* ─── HERO ─── */
.hero-section {
  padding: 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero-row {
  min-height: calc(100vh - 64px - 44px);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  border-right: 1px solid var(--border);
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--dark);
}
.hero-title .light-part { font-weight: 200; }
.hero-title .bold-part  { font-weight: 800; }
.gold-divider { margin: 22px 0 14px; }
.hero-slogan {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 340px;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 60px 60px;
  position: relative;
}

/* ─── THREE.JS GLOBE ─── */
#globe-canvas { display: block; cursor: grab; max-width: 100%; }
#globe-canvas:active { cursor: grabbing; }

/* globe-wrap обжимается по размеру канваса (inline-block),
   карточки позиционируются в % от него — всегда прилипают к глобусу */
.globe-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.data-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background: rgba(245,244,241,.93);
  border: 0.5px solid var(--border);
  padding: 14px 18px;
  min-width: 152px;
  backdrop-filter: blur(4px);
}
.data-card2 {
  position: absolute;
  top: 10%;
  right: 0;
  background: rgba(245,244,241,.89);
  border: 0.5px solid var(--border);
  padding: 12px 16px;
  min-width: 130px;
  backdrop-filter: blur(4px);
}
.data-card3 {
  position: absolute;
  top: 70%;
  left: 0;
  background: rgba(245,244,241,.93);
  border: 0.5px solid var(--border);
  padding: 14px 18px;
  min-width: 140px;
  backdrop-filter: blur(4px);
}
.dc-label { font-size: 8.5px; letter-spacing: 0.18em; color: var(--mid); margin-bottom: 5px; }
.dc-val { font-size: 20px; font-weight: 300; color: var(--dark); line-height: 1; }
.dc-up  { font-size: 9px; color: #4A5C35; letter-spacing: 0.08em; margin-top: 4px; }
.dc-neu { font-size: 9px; color: var(--mid); letter-spacing: 0.08em; margin-top: 4px; }

/* ─── TICKER ─── */
.ticker-bar {
  height: 44px;
  background: var(--ticker-bg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 28px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  font-weight: 500;
  background: linear-gradient(to right, transparent, var(--ticker-bg) 30%);
  z-index: 2;
  width: 180px;
  justify-content: flex-end;
}
.ticker-track { display: flex; animation: ticker 22s linear infinite; white-space: nowrap; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
}
.ticker-item .t-name { color: var(--dark); font-weight: 600; }
.ticker-item .up   { color: #5A8A5A; }
.ticker-item .down { color: #A05A5A; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── ABOUT INTRO ─── */
.section-about {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.section-body { font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.9; padding-right: 200px;}
.section-body + .section-body { margin-top: 16px; }
.about-right {
  border-left: 1px solid var(--border);
  padding-left: 80px;
  padding-top: 0;
}

/* ─── CAPABILITY GRID ─── */
.capability-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.capability-item { border-left: 2px solid var(--gold); padding-left: 16px; flex: 1 1 calc(50% - 12px); min-width: 160px; }
.capability-item-title { font-size: 11px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.capability-item-text  { font-size: 11px; color: var(--mid); font-weight: 300; }

/* ─── PRODUCTS INTRO ─── */
.section-products {
  padding: 80px 60px 100px;
  background: var(--ticker-bg);
}
.section-products-header { margin-bottom: 56px; }
.product-card {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color .25s;
  height: 100%;
}
.product-card:hover { border-color: var(--gold); }
.product-card-num { font-size: 9px; letter-spacing: 0.2em; color: var(--light); font-weight: 500; margin-bottom: 20px; }
.product-card-icon { width: 36px; height: 36px; margin-bottom: 24px; }
.product-card-title { font-size: 17px; font-weight: 600; color: var(--dark); letter-spacing: -0.01em; margin-bottom: 14px; }
.product-card-text { font-size: 13px; color: var(--mid); font-weight: 300; line-height: 1.8; }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
}
.product-card-link:hover { color: var(--gold); }

/* ─── STATS BAR ─── */
.stats-bar { display: flex; gap: 52px; margin-top: 64px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat-value { font-size: 28px; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; line-height: 1; }
.stat-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); font-weight: 500; margin-top: 6px; }

/* ─── RESPONSIVE: 1200px ─── */
@media (max-width: 1199.98px) {
  .hero-section { padding: 0 30px; }
  .hero-left { padding: 60px 40px 60px 0; }
  .hero-right { padding: 40px 0 40px 40px; }
  .section-about { padding: 80px 30px; }
  .section-products { padding: 60px 30px; }
}

/* ─── RESPONSIVE: 992px ─── */
@media (max-width: 991.98px) {
  .hero-row { min-height: auto; }
  .hero-left { padding: 52px 0 40px; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-right { padding: 36px 0 48px; min-height: 280px; justify-content: center; }
  .data-card, .data-card2, .data-card3 { display: none; }
  .hero-slogan { font-size: 9px; letter-spacing: 0.1em; }
  .hero-subtitle { max-width: 100%; }
  .stats-bar { gap: 24px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; }
  .section-about { padding: 52px 20px; }
  .about-right { border-left: none; padding-left: 0; padding-top: 40px; border-top: 1px solid var(--border); margin-top: 0; }
  .section-products { padding: 52px 20px 60px; }
  .section-products-header { flex-direction: column !important; align-items: flex-start !important; gap: 20px; margin-bottom: 32px; }
  .capability-item { flex: 1 1 100%; }
}

/* ─── RESPONSIVE: 480px ─── */
@media (max-width: 479.98px) {
  .hero-section { padding: 0 16px; }
  .hero-left { padding: 40px 0 32px; }
  .section-about { padding: 44px 16px; }
  .section-products { padding: 44px 16px 52px; }
  .stats-bar { gap: 20px; }
}
