* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: #0B0F1A;
  color: #F8FAFC;
  line-height: 1.6;
}
a {
  color: #38BDF8;
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  background: #111827;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  max-height: 50px;
}
.logo-footer {
  max-height: 100px;
}
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  background: #7C3AED;
  color: #F8FAFC;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}
.site-nav {
  display: flex;
  gap: 24px;
}
.site-nav a {
  color: #F8FAFC;
  font-weight: 600;
}
.hero {
  padding: 70px 0;
}
.hero.small {
  padding: 50px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-image img {
  width: 100%;
  border-radius: 16px;
}
.section {
  padding: 60px 0;
}
.alt-bg {
  background: #111827;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #111827;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #334155;
}
.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #7C3AED;
  color: #F8FAFC;
}
.btn-secondary {
  background: #334155;
  color: #F8FAFC;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #0B0F1A;
  color: #F8FAFC;
}
.faq details {
  background: #111827;
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #334155;
}
.site-footer {
  background: #111827;
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.footer-grid ul {
  list-style: none;
}
.footer-grid li {
  margin-bottom: 8px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111827;
  border-top: 1px solid #334155;
  padding: 16px 0;
  display: none;
  z-index: 100;
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cookie-actions {
  display: flex;
  gap: 12px;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid, .grid-2, .grid-3, .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-toggle-label {
    display: block;
  }
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: #0B0F1A;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateY(-100%);
    transition: none;
  }
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #F8FAFC;
    cursor: pointer;
  }
  .nav-toggle:checked ~ .site-nav {
    transform: translateY(0);
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }
  .section {
    padding: 40px 0;
  }
}