:root {
  --bg: #0b0f1a;
  --bg-soft: #121a2b;
  --card: #171f33;
  --text: #e6ecf5;
  --muted: #b6c2d2;
  --accent: #4cc9f0;
  --accent-2: #4361ee;
  --warning: #f2b705;
  --border: #24314d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #001018;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 26, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.site-nav {
  display: none;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--text);
}

.hero {
  padding: 60px 0 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 2.1rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: #001018;
}

.button-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.section {
  padding: 40px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-size: 1.15rem;
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(76, 201, 240, 0.15);
  color: var(--accent);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.list span {
  color: var(--accent);
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial strong {
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 60px;
  color: var(--muted);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 16, 0.86);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 200;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__panel {
  width: 82%;
  max-width: 320px;
  background: var(--bg);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  border-left: 1px solid var(--border);
}

.mobile-menu__panel a {
  color: var(--text);
  font-size: 1.05rem;
}

.mobile-menu__close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 300;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 14, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 400;
  padding: 20px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__panel {
  width: 100%;
  max-width: 560px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pref-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pref-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
}

.pref-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.pref-toggle[aria-pressed="true"] {
  background: var(--accent-2);
  border-color: transparent;
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 900px) {
  .site-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid .card {
    flex: 1 1 calc(50% - 18px);
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
