* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #f6f4f1;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b675f;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 10px;
  border-radius: 20px;
  background: #e9e4de;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6% 40px;
  background: #ffffff;
}

.hero-inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero-media {
  flex: 1 1 320px;
  background-color: #d8d4ce;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 360px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  border: 1px solid #1c1c1c;
  background: #1c1c1c;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
}

.btn.secondary {
  background: #f6f4f1;
  color: #1c1c1c;
}

.section {
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1c1c1c;
  color: #ffffff;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media-frame {
  background-color: #e1ddd7;
  border-radius: 18px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 280px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card.media {
  padding: 0;
  overflow: hidden;
  background-color: #e3ded8;
}

.card.media img {
  width: 100%;
  height: 200px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 20px;
  background: #efe8df;
  font-size: 0.85rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1c1c1c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 260px;
  background: #fefcf8;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid #e6dfd6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #cfc8be;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background: #111111;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  border-radius: 30px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: #1c1c1c;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: #6b675f;
}

.page-title {
  font-size: 2rem;
  margin: 0;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
    margin: 0 6% 20px;
  }
}
