* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-strip {
  background: #201e1b;
  color: #f5f2ec;
  padding: 12px 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-strip .ad-label {
  font-weight: 600;
}

.top-strip nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 48px 6vw;
  background: #efe8df;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 320px;
  background: #d7c8b8;
  padding: 12px;
  border-radius: 18px;
}

.hero-media img {
  border-radius: 12px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1c1c1c;
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: transparent;
  color: #1c1c1c;
  border-radius: 999px;
  border: 1px solid #1c1c1c;
  cursor: pointer;
  font-weight: 600;
}

.section {
  padding: 54px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 300px;
  background: #f1ece6;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset-media {
  flex: 1 1 300px;
  background: #dcd2c6;
  padding: 12px;
  border-radius: 18px;
}

.offset-media img {
  border-radius: 14px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  flex: 1 1 200px;
  background: #201e1b;
  color: #f7f5f2;
  padding: 16px;
  border-radius: 12px;
}

.pricing-zone {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 220px;
  background: #f8f3ee;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card img {
  border-radius: 12px;
}

.bg-sand-1 {
  background: #d7c8b8;
}

.bg-sand-2 {
  background: #dcd2c6;
}

.bg-sand-3 {
  background: #e1d7cb;
}

.bg-sand-4 {
  background: #e3d9cf;
}

.bg-sand-5 {
  background: #f8f3ee;
}

.bg-sand-6 {
  background: #f3ede6;
}

.bg-sand-7 {
  background: #f6efe7;
}

.bg-sand-8 {
  background: #f2ede7;
}

.bg-sand-9 {
  background: #f4eee8;
}

.bg-sand-10 {
  background: #e1d8cd;
}

.bg-sand-11 {
  background: #ded3c8;
}

.form-panel {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-row label {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3b8;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  background: #1c1c1c;
  color: #f7f5f2;
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #d0c8bd;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.sticky-cta span {
  font-size: 14px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #d0c8bd;
  padding: 16px;
  border-radius: 14px;
  max-width: 340px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
}

.lead {
  font-size: 18px;
  max-width: 640px;
}

.simple-layout {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
}

.simple-layout img {
  border-radius: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 240px;
  background: #f5efe8;
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 720px) {
  .top-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
