/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1778224533
Updated: 2026-05-08 10:15:33

*/
/* ============================================================
   GLOBALNEX — Global Styles
   Elementor → Site Settings → Custom CSS
   ============================================================ */
 
/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600&display=swap');
 
/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Цвета */
  --gn-ink:        #06070d;   /* самый тёмный фон */
  --gn-ink2:       #0b0d18;   /* чуть светлее */
  --gn-ink3:       #10131f;   /* секции */
  --gn-cyan:       #00d4ff;   /* акцент */
  --gn-cyan-dim:   rgba(0, 212, 255, 0.15);
  --gn-white:      #eef2ff;   /* основной текст */
  --gn-muted:      rgba(180, 195, 230, 0.65); /* второстепенный текст */
  --gn-border:     rgba(255, 255, 255, 0.06); /* разделители */
  --gn-grid:       rgba(0, 212, 255, 0.025);  /* фоновая сетка */
 
  /* Шрифты */
  --gn-font-display: 'Bebas Neue', cursive;
  --gn-font-body:    'Manrope', sans-serif;
 
  /* Отступы секций */
  --gn-section-y:  120px;
  --gn-section-x:  80px;
}
 
/* ── Base ──────────────────────────────────────────────────── */
body {
  background-color: var(--gn-ink);
  color: var(--gn-white);
  font-family: var(--gn-font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
 
/* ── Фоны секций — просто добавляй класс в Elementor ──────── */
.gn-bg-ink  { background-color: var(--gn-ink);  }
.gn-bg-ink2 { background-color: var(--gn-ink2); }
.gn-bg-ink3 { background-color: var(--gn-ink3); }
 
/* ── Фоновая сетка (добавь класс на секцию) ────────────────── */
.gn-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gn-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--gn-grid) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}
 
/* ── Типографика ───────────────────────────────────────────── */
.gn-display {
  font-family: var(--gn-font-display);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--gn-white);
}
 
.gn-display em {
  font-style: normal;
  color: var(--gn-cyan);
}
 
.gn-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gn-cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
 
.gn-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gn-cyan);
  flex-shrink: 0;
}
 
.gn-muted {
  color: var(--gn-muted);
  line-height: 1.85;
}
 
/* ── Reveal-анимации при скролле ───────────────────────────── */
.gn-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.gn-reveal.gn-visible {
  opacity: 1;
  transform: translateY(0);
}
.gn-d1 { transition-delay: 0.10s; }
.gn-d2 { transition-delay: 0.22s; }
.gn-d3 { transition-delay: 0.34s; }
.gn-d4 { transition-delay: 0.46s; }
.gn-d5 { transition-delay: 0.58s; }
 
/* ── Разделитель секций ────────────────────────────────────── */
.gn-divider {
  border: none;
  border-top: 1px solid var(--gn-border);
  margin: 0;
}
 
/* ── Кнопки ────────────────────────────────────────────────── */
.gn-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--gn-cyan);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--gn-font-body);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, gap 0.25s;
}
.gn-btn:hover {
  border-color: var(--gn-cyan);
  background: rgba(0, 212, 255, 0.06);
  gap: 20px;
  color: var(--gn-cyan);
  text-decoration: none;
}
 
.gn-btn-solid {
  background: var(--gn-cyan);
  color: var(--gn-ink);
  border-color: var(--gn-cyan);
}
.gn-btn-solid:hover {
  background: transparent;
  color: var(--gn-cyan);
}
 
/* ── Теги / Бейджи ─────────────────────────────────────────── */
.gn-tag {
  display: inline-block;
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: rgba(0, 212, 255, 0.8);
  padding: 7px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--gn-font-body);
  transition: border-color 0.2s, background 0.2s;
}
.gn-tag:hover {
  border-color: var(--gn-cyan);
  background: rgba(0, 212, 255, 0.06);
}
 
/* ── Карточка сервиса ──────────────────────────────────────── */
.gn-card {
  background: var(--gn-ink3);
  border: 1px solid var(--gn-border);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.gn-card:hover {
  background: #0e1220;
  border-color: rgba(0, 212, 255, 0.15);
}
.gn-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gn-cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.gn-card:hover::after { transform: scaleX(1); }
 
/* ── Иконка в карточке ─────────────────────────────────────── */
.gn-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.25s, background 0.25s;
}
.gn-card:hover .gn-icon {
  border-color: var(--gn-cyan);
  background: rgba(0, 212, 255, 0.05);
}
 
/* ── Статистика / Счётчик ──────────────────────────────────── */
.gn-stat-num {
  font-family: var(--gn-font-display);
  font-size: clamp(56px, 5vw, 88px);
  line-height: 1;
  color: var(--gn-white);
  display: block;
}
.gn-stat-num .gn-accent { color: var(--gn-cyan); }
 
.gn-stat-label {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gn-muted);
  margin-top: 10px;
  line-height: 1.5;
  display: block;
}
 
/* ── Горизонтальный разделитель с текстом ──────────────────── */
.gn-border-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--gn-border);
  position: relative;
  transition: padding-left 0.3s;
}
.gn-border-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gn-cyan);
  transform: scaleY(0);
  transition: transform 0.3s;
}
.gn-border-row:hover { padding-left: 18px; }
.gn-border-row:hover::before { transform: scaleY(1); }
 
/* ── Декоративный большой фоновый текст ────────────────────── */
.gn-bg-text {
  position: absolute;
  font-family: var(--gn-font-display);
  font-size: 280px;
  color: rgba(255, 255, 255, 0.012);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
  line-height: 1;
}
 
/* ── Параллакс-обёртка ─────────────────────────────────────── */
[data-gn-parallax] { will-change: transform; }
 
/* ── Адаптив ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --gn-section-y: 80px;
    --gn-section-x: 40px;
  }
}
@media (max-width: 640px) {
  :root {
    --gn-section-y: 60px;
    --gn-section-x: 24px;
  }
  .gn-bg-text { font-size: 120px; }
}
