* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1d1f24;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-nav {
  padding: 18px 0;
  background: #f1ece4;
  border-bottom: 1px solid #e2d9ce;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  padding: 4px 10px;
  background: #f9e8d5;
  border-radius: 999px;
}

.hero {
  padding: 72px 0 64px;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.hero-text {
  flex: 1.1;
  padding: 18px 24px;
  background: #fff6ec;
  border-radius: 24px;
  align-self: center;
}

.hero-visual {
  flex: 1;
  border-radius: 32px;
  overflow: hidden;
  background-color: #d6c6b6;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.section {
  padding: 60px 0;
}

.section.compact {
  padding: 40px 0;
}

.section-offset {
  display: flex;
  align-items: center;
  gap: 28px;
}

.offset-card {
  flex: 1;
  padding: 26px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(28, 26, 22, 0.08);
}

.offset-image {
  flex: 0.9;
  border-radius: 26px;
  overflow: hidden;
  background-color: #cdd8c1;
  transform: translateY(16px);
}

.offset-image img {
  width: 100%;
  height: 320px;
}

.inline-link {
  font-weight: 600;
  border-bottom: 2px solid #1d1f24;
  padding-bottom: 2px;
}

.split-surface {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #e2e9d7;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 18px;
}

.card-media {
  background-color: #d7c5c5;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.card-content {
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: #1d1f24;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.light {
  background: #f7b65a;
  color: #1d1f24;
}

.btn.ghost {
  background: transparent;
  border: 2px solid #1d1f24;
  color: #1d1f24;
}

.cta-band {
  background: #1d1f24;
  color: #fff;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504208434309-cb69f4fe52b0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.cta-band-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  flex: 1 1 200px;
  background: #f5f0e8;
  border-radius: 18px;
  padding: 18px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  border-left: 6px solid #f7b65a;
}

.form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d1c8;
  font-size: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #f9e8d5;
  padding: 12px 0;
  border-top: 1px solid #e2d9ce;
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-hero {
  padding: 48px 0 24px;
}

.page-hero .hero-visual img {
  min-height: 260px;
}

.legal-block {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  margin-top: 20px;
}

.footer {
  padding: 40px 0 60px;
  background: #f1ece4;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-column {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.notice {
  font-size: 14px;
}

.image-frame {
  background-color: #cfd5c6;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 260px;
}

@media (max-width: 860px) {
  .hero-inner,
  .section-offset {
    flex-direction: column;
  }

  .offset-image {
    transform: none;
  }

  .sticky-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
