* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background-color: #f5f1ea;
}

a {
  color: inherit;
  text-decoration: none;
}

img.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  padding: 18px 6vw 8px;
  background-color: #efe7dc;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a4c3a;
  background: #f7f0e5;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 30px;
  background-color: #efe3d5;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 320px;
  background-color: #d1c0a9;
  border-radius: 18px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f2430;
  background-color: #1f2430;
  color: #f8f5f0;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: transparent;
  color: #1f2430;
}

.btn.link {
  background: none;
  border: none;
  color: #1f2430;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}

.magazine {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 6vw 50px;
}

.magazine-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.magazine-column {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(25, 27, 33, 0.08);
}

.panel.dark {
  background-color: #2c2e36;
  color: #f6f1ea;
}

.panel.soft {
  background-color: #f6efe6;
}

.image-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d5c8b8;
  min-height: 190px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e4d9ca;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  background-color: #f1e7d8;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8b7a1;
  font-size: 0.95rem;
  background-color: #fff;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background-color: #1f2430;
  color: #f6f1ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #d9cfc0;
  max-width: 780px;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #1f2430;
  color: #f7f3ee;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(24, 24, 28, 0.25);
  z-index: 10;
}

.sticky-cta a {
  color: #f7f3ee;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #f7f0e5;
  color: #1f2430;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(25, 27, 33, 0.2);
  z-index: 11;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.split-feature {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split-feature .panel {
  flex: 1 1 280px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  line-height: 1.5;
}

.notice {
  background-color: #fff3e0;
  border-left: 4px solid #d4a373;
  padding: 12px 16px;
  border-radius: 10px;
}

.spacer {
  height: 16px;
}

@media (max-width: 780px) {
  .sticky-cta {
    position: static;
    margin: 18px 6vw 0;
    justify-content: center;
  }

  .cookie-banner {
    left: 6vw;
    right: 6vw;
    bottom: 12px;
    max-width: none;
  }
}
