* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2937;
  background: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: #eef2ff;
  color: #3730a3;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

section {
  padding: 56px 6%;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #111827;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 246, 243, 0.9);
}

.hero .split {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 260px;
}

.split .media {
  flex: 1;
  min-width: 260px;
}

.media {
  background-color: #d9dde6;
  padding: 16px;
  border-radius: 18px;
}

.media img {
  width: 100%;
  height: 360px;
  border-radius: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 12px;
  color: #4b5563;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f2937;
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #1f2937;
}

.link-inline {
  color: #2563eb;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 20px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  align-items: center;
  border: 1px solid #e5e7eb;
}

.card .card-media {
  background-color: #e0e7ff;
  border-radius: 12px;
  padding: 10px;
}

.card img {
  width: 160px;
  height: 120px;
  border-radius: 8px;
}

.price {
  font-weight: 700;
  color: #0f172a;
}

.accent {
  background: #111827;
  color: #f9fafb;
}

.accent .button.secondary {
  border-color: #f9fafb;
  color: #f9fafb;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.9rem;
  color: #4b5563;
}

.footer {
  padding: 40px 6%;
  background: #111827;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #d1d5db;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-hero {
  background: #fef3c7;
}

@media (max-width: 900px) {
  .split,
  .card {
    flex-direction: column;
  }

  .media img {
    height: 260px;
  }

  .card img {
    width: 100%;
    height: 200px;
  }
}
