* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f23;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.9rem;
  color: #4f4f4f;
  background: #f1eadf;
  padding: 6px 10px;
  border-radius: 20px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 0.95rem;
}

nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:focus,
nav a:hover {
  border-bottom-color: #1d1f23;
}

.hero {
  padding: 32px 6vw 60px;
}

.split {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .visual {
  flex: 1 1 0;
  min-width: 0;
}

.hero-visual {
  min-height: 360px;
  border-radius: 24px;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d7d1c5;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 160px;
  background-color: #d9d9d9;
}

.section {
  padding: 54px 6vw;
}

.section.alt {
  background: #fffaf3;
}

.section.soft {
  background: #ffffff;
}

.tone-block {
  padding: 48px;
  border-radius: 22px;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #4f4f4f;
}

.inline-media {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-media img {
  width: 280px;
  height: 220px;
  border-radius: 16px;
  background-color: #d9d9d9;
}

.rounded-media {
  border-radius: 18px;
  background-color: #d9d9d9;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1d1f23;
  color: #ffffff;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d1f23;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1d1f23;
  border: 1px solid #1d1f23;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4dfd5;
}

.pricing-item span {
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c4ba;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #121417;
  color: #f5f3ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d0c7ba;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: #1d1f23;
  color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner .button {
  background: #ffffff;
  color: #1d1f23;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 90px;
  background: #f2c86d;
  color: #1d1f23;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: #5f5f5f;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 20px;
  }

  .inline-media img {
    width: 100%;
  }
}
