* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b1320;
  --bg-light: #101b2e;
  --text: #f5f7fb;
  --muted: #b9c2d3;
  --primary: #f2b705;
  --primary-dark: #d39b00;
  --accent: #2dd4bf;
  --card: #14223a;
  --border: #22314d;
  --shadow: 0 12px 30px rgba(8, 15, 30, 0.35);
}

html {
  scroll-behavior: smooth;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--primary);
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 19, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand-logo {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}

.site-nav a {
  padding: 6px 0;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--text);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-bar {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.mobile-menu a {
  color: var(--muted);
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  color: var(--text);
}

.mobile-menu.is-open {
  display: flex;
}

.main {
  flex: 1;
}

.hero {
  padding: 72px 0 52px;
  background: radial-gradient(circle at top left, rgba(242, 183, 5, 0.2), transparent 55%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.btn:hover,
.btn:focus {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(242, 183, 5, 0.1);
}

.btn-link {
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  padding: 8px 0;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 32px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.price {
  font-weight: 600;
  color: var(--primary);
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.highlight span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}

.testimonial {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial p {
  color: var(--muted);
}

.testimonial .author {
  font-weight: 600;
}

.cta-band {
  background: var(--card);
  padding: 32px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #0a111d;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--text);
}

.page-header {
  padding: 64px 0 32px;
}

.page-header p {
  color: var(--muted);
  max-width: 680px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.info-list strong {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 200;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  width: min(680px, 96%);
  background: var(--bg-light);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-button {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.cookie-option {
  background: var(--card);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-option p {
  color: var(--muted);
  margin-top: 4px;
}

.badge {
  background: rgba(45, 212, 191, 0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.toggle.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 760px) {
  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .cookie-modal-footer {
    flex-direction: row;
    justify-content: flex-end;
  }
}
