:root {
  --bg: #0B0F14;
  --surface: #121A24;
  --primary: #D4AF37;
  --accent: #E23D5B;
  --text: #F2F5F7;
  --muted: #A6B0BD;
  --border: rgba(242, 245, 247, 0.1);
}

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

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--text);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.surface {
  background: var(--surface);
}

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  color: var(--text);
  margin-bottom: 16px;
}

.list {
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

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

.card {
  background: rgba(18, 26, 36, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.card p {
  color: var(--muted);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #0B0F14;
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.95);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-footer {
  height: 100px;
  width: auto;
}

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

.nav-desktop a {
  color: var(--muted);
  font-weight: 500;
}

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

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: none;
  flex-direction: column;
  padding: 32px;
  gap: 20px;
  z-index: 200;
}

.nav-mobile a {
  font-size: 1.4rem;
}

.close {
  align-self: flex-end;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 20px;
}

.nav-toggle:checked ~ .nav-mobile {
  display: flex;
}

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

.faq-item {
  background: rgba(18, 26, 36, 0.6);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
}

.form {
  display: grid;
  gap: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(18, 26, 36, 0.7);
  color: var(--text);
}

.site-footer {
  background: #0A0D12;
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-brand p,
.footer-nav a,
.footer-legal a {
  color: var(--muted);
}

.footer-nav,
.footer-legal {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  z-index: 300;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}