@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #120803;
  --bg-card: rgba(36, 18, 9, 0.85);
  --border-gold: #663914;
  --border-glow: #ffb703;
  --text-main: #fff1bf;
  --text-sub: #d8b982;
  --text-muted: #9e7948;
  --accent: #ffb703;
  --accent-hover: #ffd053;
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-sub);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  backdrop-filter: blur(16px);
  background: rgba(18, 8, 3, 0.8);
  border-bottom: 1px solid rgba(102, 57, 20, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  align-items: center;
  display: flex;
  height: 72px;
  justify-content: space-between;
}

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

.logo-img {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.logo-text {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-sub);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text-main);
}

.lang-toggle {
  align-items: center;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  color: var(--text-main);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
  padding: 6px 14px;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background: rgba(255, 183, 3, 0.22);
  border-color: var(--border-glow);
}

.btn {
  background: linear-gradient(135deg, #ffb703, #d98e28);
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(255, 183, 3, 0.25);
  color: #160c05;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  gap: 8px;
  padding: 12px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  box-shadow: 0 6px 28px rgba(255, 183, 3, 0.4);
  color: #160c05;
  transform: translateY(-2px);
}

.hero {
  padding: 90px 0 60px;
  position: relative;
  text-align: center;
}

.hero-glow {
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, rgba(18, 8, 3, 0) 70%);
  height: 500px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 800px;
}

.badge {
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 20px;
  color: var(--accent);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-sub);
  font-size: 20px;
  margin: 0 auto 36px;
  max-width: 680px;
}

.features {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 60px 0;
}

.card {
  backdrop-filter: blur(12px);
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: 20px;
  padding: 36px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.card-icon {
  align-items: center;
  background: rgba(255, 183, 3, 0.1);
  border-radius: 14px;
  color: var(--accent);
  display: flex;
  font-size: 24px;
  height: 52px;
  justify-content: center;
  margin-bottom: 20px;
  width: 52px;
}

.card h3 {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  margin: 40px 0 80px;
  padding: 48px;
}

.legal-content h1 {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.legal-section {
  border-top: 1px solid rgba(102, 57, 20, 0.4);
  padding-top: 28px;
  margin-top: 28px;
}

.legal-section h2 {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.legal-section p, .legal-section ul {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section ul {
  padding-left: 20px;
}

footer {
  border-top: 1px solid rgba(102, 57, 20, 0.4);
  color: var(--text-muted);
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 17px;
  }
  .legal-content {
    padding: 24px;
  }
}
