* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0e1113;
  --surface: #161a1d;
  --surface-2: #1f2529;
  --text: #f2f3f4;
  --muted: #b7c0c6;
  --brand: #e39a3b;
  --brand-2: #d47c2c;
  --accent: #4fb3b8;
  --border: #2c343a;
  --shadow: rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-2);
}

.menu-toggle span {
  font-size: 0.95rem;
}

.nav-links {
  display: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 1.5rem;
}

.mobile-menu a {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu[hidden] {
  display: none;
}

main {
  padding: 2.5rem 0 4rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #1b1306;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.link-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--brand-2);
}

.section {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section h2 {
  font-size: 1.6rem;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 12px 30px var(--shadow);
}

.card p {
  color: var(--muted);
}

.price {
  font-weight: 600;
  color: var(--brand);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 179, 184, 0.15);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  border: 1px solid rgba(79, 179, 184, 0.4);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list li {
  list-style: none;
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--brand);
  left: 0;
  top: 0.45rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
}

.testimonial strong {
  color: var(--text);
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
  background: var(--surface);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 16px 40px var(--shadow);
  z-index: 30;
}

.cookie-banner p {
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-actions .btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal[hidden] {
  display: none;
}

.modal-content {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-row input {
  width: 20px;
  height: 20px;
}

.link-button {
  color: var(--accent);
  text-decoration: underline;
  padding: 0;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid .card {
    flex: 1 1 calc(50% - 1.25rem);
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
