* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  padding: 18px 8%;
  background: #f1ebe2;
  gap: 10px;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: lowercase;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  color: #4a4a4f;
  background: #fff2cc;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #ddd5c8;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: #ece1d3;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 50px 8% 40px;
  gap: 30px;
  background: #faf7f2;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  max-width: 620px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.image-frame {
  background: #ded7cb;
  padding: 12px;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.section {
  display: flex;
  flex-direction: column;
  padding: 48px 8%;
  gap: 24px;
}

.section.alt {
  background: #efe7db;
}

.section.dark {
  background: #1f2124;
  color: #f6f4f0;
}

.background-section {
  position: relative;
  overflow: hidden;
  color: #f7f4ef;
  background: #1f1f1f;
}

.background-section .background-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #2d2d2d;
}

.background-section .background-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.background-section .content {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 26px;
  margin: 0;
}

.story-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e1d7c9;
}

.story-card strong {
  font-size: 18px;
}

.quote {
  font-style: italic;
  padding: 16px 20px;
  border-left: 4px solid #cc9a3f;
  background: #fffaf2;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1d1d1f;
}

.btn:hover {
  transform: translateY(-2px);
  background: #3d3d3f;
}

.btn.secondary:hover {
  background: #e6dccd;
}

.inline-link {
  text-decoration: underline;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e1d7c9;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e1d7c9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc5b7;
  font-size: 16px;
  font-family: inherit;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 8% 50px;
  background: #171717;
  color: #f5f1ec;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  background: #2a2a2a;
  padding: 12px 14px;
  border-radius: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: #1d1d1f;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-cta button:hover {
  background: #3d3d3f;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1d1d1f;
}

.cookie-actions button:hover {
  background: #3d3d3f;
}

.cookie-actions button.secondary:hover {
  background: #e6dccd;
}

.page-visual {
  display: flex;
  gap: 18px;
  flex-direction: column;
}

.note {
  font-size: 14px;
  color: #4a4a4f;
}

@media (min-width: 860px) {
  .hero-split,
  .story-row,
  .two-column {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .story-card,
  .page-visual,
  .form-block {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 220px;
  }
}
