* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #0b1c2d, #05070c);
  color: #ffffff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo img {
  width: 42px;
  height: 42px;
}

.lang-toggle button {
  background: none;
  border: none;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}

.lang-toggle .active {
  color: #fff;
  font-weight: 600;
}

.hero {
  text-align: center;
  padding: 110px 20px 90px;
}

.hero h1 {
  font-size: 42px;
  max-width: 900px;
  margin: 0 auto 18px;
}

.hero p {
  font-size: 18px;
  color: #bbb;
}

.cta {
  margin-top: 32px;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin: 0 8px;
  display: inline-block;
  font-weight: 500;
}

.primary {
  background: #1da1f2;
  color: #000;
}

.secondary {
  border: 1px solid #555;
  color: #fff;
}

.services {
  padding: 80px 32px;
  max-width: 1200px;
  margin: auto;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 30px;
}

.card.coming {
  opacity: 0.6;
}

footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #777;
}
