:root {
  --primary: #0B1220;
  --accent: #5B7CFF;
  --secondary: #22C55E;
  --background: #0F172A;
  --surface: #111C33;
  --text: #E5E7EB;
  --muted: #94A3B8;
  --highlight: #8B5CF6;
}

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

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.nav-toggle {
  display: none;
}

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

.site-nav a {
  color: var(--text);
  font-weight: 500;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.nav-close {
  display: none;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(91, 124, 255, 0.15), rgba(15, 23, 42, 0.1));
}

.hero.small {
  padding: 60px 0;
}

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

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

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

.lead {
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--accent);
  color: var(--text);
}

.section {
  padding: 72px 0;
}

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

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  max-width: 780px;
}

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

.card,
.icon-card {
  background: rgba(17, 28, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card h3,
.icon-card h3 {
  margin-bottom: 10px;
}

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

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

.image-rounded {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.list {
  margin-top: 16px;
  padding-left: 20px;
  color: var(--muted);
}

.faq details {
  background: rgba(17, 28, 51, 0.9);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin-top: 12px;
}

.contact-section {
  background: rgba(11, 18, 32, 0.8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.contact-info p {
  margin-bottom: 6px;
  color: var(--muted);
}

.legal h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.legal h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

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

.site-footer {
  background: #0B1220;
  padding: 60px 0 20px;
  color: var(--text);
}

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

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

.footer-nav h4 {
  margin-bottom: 12px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: var(--muted);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17, 28, 51, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  display: none;
  z-index: 2000;
  width: min(900px, 92%);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

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

.site-nav.static {
  gap: 20px;
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 80px 24px;
    transform: translateX(100%);
    transition: none;
  }
  .nav-toggle:checked + .site-nav {
    transform: translateX(0);
  }
  .nav-close {
    display: block;
    font-size: 2rem;
    color: var(--text);
    align-self: flex-end;
    margin-bottom: 40px;
    cursor: pointer;
  }
  .nav-burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}