* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2024;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #111217;
  color: #fefcf8;
  padding: 10px 0;
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav {
  background: #fefcf8;
  border-bottom: 1px solid #e4e0da;
  padding: 18px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1ede7;
}

.nav-toggle {
  display: none;
  background: #111217;
  color: #fefcf8;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.hero {
  padding: 60px 0 70px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  color: #6b6f7a;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  background: #111217;
  color: #fefcf8;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f1ede7;
  color: #1e2024;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}

.image-card {
  background: #e5e0d8;
  border-radius: 18px;
  overflow: hidden;
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: #f1ede7;
}

.section.dark {
  background: #111217;
  color: #fefcf8;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 250px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.dark {
  background: #1e2024;
  color: #fefcf8;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f1ede7;
  font-size: 0.85rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d3cb;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  background: #2f5bd4;
  color: #ffffff;
}

.footer {
  padding: 50px 0;
  background: #0f1014;
  color: #fefcf8;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer a {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus .container {
  background: rgba(17, 18, 23, 0.82);
  padding: 50px 40px;
  border-radius: 24px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fefcf8;
    padding: 16px;
    border-radius: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
