* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f6f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sidebar {
  background: #111316;
  color: #f4f2ec;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: #f4f2ec;
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
  background: #f2c94c;
  color: #111316;
  padding: 10px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 20px 80px;
}

.section {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 18px 40px rgba(17, 19, 22, 0.08);
}

.section.alt {
  background: #f1eee6;
}

.section.dark {
  background: #1b1e22;
  color: #f6f4f0;
}

.section.backdrop {
  background: linear-gradient(120deg, rgba(17, 19, 22, 0.82), rgba(17, 19, 22, 0.3)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f0;
}

.section.hero {
  background: linear-gradient(120deg, rgba(17, 19, 22, 0.82), rgba(17, 19, 22, 0.2)),
    url("https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f0;
  min-height: 340px;
  justify-content: flex-end;
}

.section.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #f2c94c;
  color: #111316;
}

.button.secondary {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #1f2428;
  color: #ffffff;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #f9f8f5;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.testimonial {
  border-left: 3px solid #f2c94c;
  padding-left: 12px;
  font-style: italic;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc8b8;
  background: #ffffff;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #1f2428;
  color: #f6f4f0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  background: #111316;
  color: #f4f2ec;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f4f2ec;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 88px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .reject {
  background: #1f2428;
  color: #ffffff;
}

.hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.section.small {
  padding: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    min-height: 100vh;
    align-self: flex-start;
  }

  .content {
    padding: 40px 48px 120px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 220px;
  }
}
