﻿* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #f8fafc;
  line-height: 1.7;
}

header {
  background: #0b1220;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  color: #ffffff;
}

.lang-switch {
  margin-left: auto;
}

.hero {
  background:
    linear-gradient(rgba(8, 15, 35, 0.66), rgba(8, 15, 35, 0.66)),
    url("images/hero-bg.jpg") center center / cover no-repeat;
  color: white;
  padding: 88px 20px 78px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.18;
  margin: 0 0 20px;
  max-width: 760px;
}

.hero p {
  font-size: 18px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons a {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn-primary {
  background: white;
  color: #0f172a;
}

.btn-primary:hover {
  background: #e2e8f0;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  width: 100%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

.panel-card h3 {
  margin-top: 0;
  color: #ffffff;
}

.panel-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 16px;
  color: #0f172a;
}

.section-intro {
  max-width: 760px;
  color: #475569;
  margin: 0 auto 30px;
}

.platforms {
  text-align: center;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.logo-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  min-height: 86px;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.logo-item img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.cards {
  display: grid;
  gap: 20px;
}

.six-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  color: #0f172a;
}

.card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
}

.stats-wrap {
  background: linear-gradient(135deg, #0f172a, #123a8f);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  color: white;
}

.stat-box strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
}

.stat-box span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.highlight {
  background: #e0f2fe;
  border-left: 5px solid #0284c7;
  padding: 22px;
  border-radius: 10px;
  color: #0f172a;
}

.content-box {
  max-width: 1180px;
  margin: 40px auto;
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.content-box h1 {
  margin-top: 0;
  color: #0f172a;
}

.contact-box {
  background: #0f172a;
  color: white;
  border-radius: 18px;
  padding: 34px;
}

.contact-box h2 {
  color: white;
  margin-top: 0;
}

.contact-box p,
.contact-box a {
  color: rgba(255, 255, 255, 0.92);
}

.small {
  font-size: 14px;
  color: #64748b;
}

footer {
  text-align: center;
  padding: 24px 20px 36px;
  color: #64748b;
  font-size: 14px;
}

ul.clean-list {
  padding-left: 20px;
  color: #475569;
}

ul.clean-list li {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .six-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 20px 60px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section h2 {
    font-size: 26px;
  }

  .hero-grid,
  .six-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .lang-switch {
    margin-left: 0;
    width: 100%;
  }

  .nav-links {
    width: 100%;
  }

  .content-box {
    margin: 24px 16px;
    padding: 24px;
  }
}