* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f8f7f3;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6%;
  background: #f3efe7;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #f7d9b8;
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 64px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section--tint {
  background: #f0ede6;
}

.section--dark {
  background: #202120;
  color: #f6f2ea;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.headline {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  padding: 12px 22px;
  border-radius: 6px;
  background: #1b1b1b;
  color: #fdfaf3;
  font-weight: 600;
  border: none;
}

.cta-outline {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
  background: transparent;
  font-weight: 600;
}

.image-frame {
  background: #ddd4c5;
  padding: 10px;
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 12px;
}

.step span {
  font-weight: 700;
}

.form-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c9c3b7;
  font-size: 1rem;
  font-family: inherit;
}

.form-box button {
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  background: #1b1b1b;
  color: #fdfaf3;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: #f9e5cd;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1b1b1b;
  color: #f6f2ea;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f6f2ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1b1b1b;
  color: #fdfaf3;
}

.cookie-reject {
  background: #d7d0c2;
  color: #1b1b1b;
}

.legal-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

.hidden {
  display: none;
}
