/* ===== Variables ===== */
:root {
  --primary: #f01300;
  --primary-dark: #c40f00;
  --primary-glow: rgba(240, 19, 0, 0.2);
  --bg: #f8f8fa;
  --bg-elevated: #f0f0f3;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.14);
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --text-dim: #aeaeb2;
  --shadow: rgba(0, 0, 0, 0.06);
  --shadow-md: rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.w-full { width: 100%; }

/* Aurora button effect */
.aurora-btn {
  position: relative;
  overflow: hidden;
}
.aurora-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: conic-gradient(from var(--angle, 0deg), #fff, var(--primary), #fff, var(--primary), #fff);
  animation: rotate-border 2.4s ease-in-out infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.aurora-btn:hover::before { opacity: 1; }
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotate-border {
  to { --angle: 360deg; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav a:hover { color: var(--text); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--text-muted);
  transition: var(--transition);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: 0 1px 4px var(--shadow);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240, 19, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(240, 19, 0, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 80%, rgba(255, 140, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-content {
  max-width: 760px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(240, 19, 0, 0.08);
  border: 1px solid rgba(240, 19, 0, 0.18);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #1d1d1f 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-top: 56px;
  min-height: 200px;
  pointer-events: none;
}
.card-float {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}
.card-1 {
  position: relative;
  top: auto;
  left: auto;
  animation: none;
  width: 100%;
}
.card-2 {
  top: -20px;
  right: -24px;
  animation-delay: -2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Payment showcase (hero) */
.payment-showcase {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 48px var(--shadow-md);
}
.showcase-header {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}
.payment-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* Global brands bar */
.global-brands-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px var(--shadow);
}

/* Payment brand logos */
.pay-brand, .pay-chip, .method-logos span[data-pay] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pay-logo-wrap,
.pay-brand[data-pay],
.pay-chip[data-pay],
.method-logos span[data-pay] {
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 40px;
  box-shadow: 0 1px 3px var(--shadow);
}
.pay-logo-img {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
}
.pay-logo-sm,
.pay-chip .pay-logo-img {
  height: 22px;
  max-width: 76px;
}
.method-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.method-logos span[data-pay] {
  min-height: 36px;
  padding: 4px 8px;
}
.method-logos .pay-logo-img {
  height: 24px;
  max-width: 72px;
}

/* Text-only payment chips (no logo available) */
.pay-chip:not([data-pay]) {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.payment-success {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 32px var(--shadow-md);
}
.payment-success svg {
  width: 28px;
  height: 28px;
  color: #34c759;
  margin-bottom: 4px;
}
.payment-success span { font-size: 13px; color: var(--text-muted); }
.payment-success strong { font-size: 20px; font-weight: 700; }
.globe-icon svg { width: 80px; height: 80px; opacity: 0.6; }

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}
.section-header {
  margin-bottom: 48px;
}
.section-header.center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== Methods ===== */
.methods { background: var(--bg-elevated); }
.region-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.region-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.region-tab:hover { border-color: var(--border-hover); color: var(--text); }
.region-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: var(--transition);
}
.method-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}
.method-card.hidden { display: none; }
.method-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}
.method-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.method-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.method-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 10px;
  border-radius: 100px;
}
.methods-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.methods-cta p { color: var(--text-muted); font-size: 16px; }

/* ===== Regions ===== */
.regions { background: var(--bg); }
.title-divider {
  color: var(--text-dim);
  font-weight: 400;
}
.igaming-highlight {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(240, 19, 0, 0.06) 0%, rgba(240, 19, 0, 0.02) 100%);
  border: 1px solid rgba(240, 19, 0, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px var(--shadow);
}
.igaming-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 19, 0, 0.1);
  border-radius: 12px;
  color: var(--primary);
}
.igaming-icon svg { width: 32px; height: 32px; }
.igaming-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.igaming-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.igaming-content strong { color: var(--text); font-weight: 600; }
.igaming-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.igaming-tags span {
  padding: 5px 12px;
  background: var(--bg-card);
  border: 1px solid rgba(240, 19, 0, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}
.regions-grid {
  display: none;
}
.regions-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.region-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: var(--transition);
}
.region-detail:hover {
  border-color: rgba(240, 19, 0, 0.2);
  box-shadow: 0 8px 24px var(--shadow);
}
.region-detail-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.region-detail-head .region-flag { font-size: 32px; line-height: 1; }
.region-detail-head .region-more-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}
.region-detail-head strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.region-detail-head span {
  font-size: 12px;
  color: var(--text-dim);
}
.region-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.region-detail-more {
  background: linear-gradient(135deg, rgba(240, 19, 0, 0.04) 0%, var(--bg-card) 100%);
  border-color: rgba(240, 19, 0, 0.12);
}
.region-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: var(--transition);
}
.region-card:hover {
  border-color: rgba(240, 19, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}
.region-flag {
  font-size: 28px;
  line-height: 1;
}
.region-more-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}
.region-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.region-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.region-info span {
  font-size: 12px;
  color: var(--text-dim);
}
.region-card-more {
  background: linear-gradient(135deg, rgba(240, 19, 0, 0.04) 0%, var(--bg-card) 100%);
  border-color: rgba(240, 19, 0, 0.12);
}
.regions-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.regions-note strong { color: var(--text); }

/* ===== Infrastructure ===== */
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.infra-content h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.infra-content > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.infra-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.infra-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.infra-features svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.infra-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 48px var(--shadow);
}
.infra-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #34c759;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.infra-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 24px;
  padding: 0 4px;
}
.chart-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--primary), rgba(240,19,0,0.3));
  border-radius: 4px 4px 0 0;
  animation: grow-bar 1s ease-out backwards;
}
.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }
@keyframes grow-bar {
  from { height: 0; }
}
.infra-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.metric span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.metric strong {
  font-size: 20px;
  font-weight: 700;
}

/* ===== Solutions ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: var(--transition);
}
.solution-card:hover {
  border-color: rgba(240, 19, 0, 0.3);
  transform: translateY(-2px);
}
.solution-card.featured {
  background: linear-gradient(135deg, rgba(240,19,0,0.08) 0%, var(--bg-card) 100%);
  border-color: rgba(240, 19, 0, 0.2);
}
.solution-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.solution-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.solution-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Stats ===== */
.stats-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 32px;
}
.stat-item {
  padding: 24px;
}
.stat-big {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat-suffix {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--primary);
}
.stat-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.stats-tagline {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact {
  background: var(--bg-elevated);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-details a:hover { color: var(--primary); }
.contact-details svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-telegram svg { color: #229ED9; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social { margin-top: 16px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 2px 6px var(--shadow);
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-md);
}
.social-link svg { width: 22px; height: 22px; }
.social-telegram:hover {
  color: #229ED9;
  border-color: rgba(34, 158, 217, 0.35);
  background: rgba(34, 158, 217, 0.06);
}
.social-telegram svg { color: #229ED9; }

.security-badges {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.security-badges span {
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ===== Footer ===== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: 0 16px 48px var(--shadow-md);
  max-width: 560px;
  width: calc(100% - 48px);
  transition: var(--transition);
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(100px);
  pointer-events: none;
}
.cookie-banner p {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .infra-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lang-switch { order: -1; }
  .igaming-highlight {
    flex-direction: column;
    padding: 24px;
  }
  .title-divider { display: none; }
  .section-header h2 { font-size: 26px; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .header-actions .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding-bottom: 60px; }
  .hero-stats { gap: 24px; }
  .hero-visual { margin-top: 40px; max-width: 100%; }
  .card-2 { right: 0; top: -12px; }
  .section { padding: 64px 0; }
  .solutions-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .regions-detail-grid { grid-template-columns: 1fr; }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
