* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0c0f14;
  --surface: #121824;
  --surface-2: #1a2232;
  --text: #f5f7fb;
  --muted: #b9c2d3;
  --brand: #f2c14e;
  --brand-2: #d7a639;
  --accent: #6cc6ff;
  --border: #243044;
  --shadow: 0 12px 30px rgba(8, 10, 14, 0.4);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-list {
  display: none;
  list-style: none;
  gap: 18px;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: min(92vw, 360px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.mobile-menu__inner a {
  color: var(--text);
  font-size: 1rem;
}

.hero {
  padding: 64px 0 40px;
  background: radial-gradient(circle at top, rgba(242, 193, 78, 0.2), transparent 55%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: #1b1b1b;
}

.button.secondary {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 700px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.15rem;
}

.card p {
  color: var(--muted);
}

.price {
  color: var(--brand);
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: var(--surface-2);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.testimonial p {
  color: var(--muted);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__inner {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  width: min(92vw, 520px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.cookie-option input {
  margin-top: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(108, 198, 255, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    max-width: 520px;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 16px);
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .testimonial-list {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33.333% - 16px);
  }
}
