* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a24;
  background-color: #f6f4f0;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw 10px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 13px;
  color: #3b4a41;
  border: 1px solid #3b4a41;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f2efe9;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #e9e4da;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw 20px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  padding: 14px;
  background-color: #d8dfd4;
  transform: translateY(14px);
}

.hero-visual img {
  width: 100%;
  height: 360px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #1f2a24;
  color: #f6f4f0;
  font-size: 13px;
  width: fit-content;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background-color: #1f2a24;
  color: #f6f4f0;
  cursor: pointer;
  font-size: 14px;
}

.btn.alt {
  background-color: #9bb3a4;
  color: #1f2a24;
}

.section {
  padding: 50px 6vw;
}

.section.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.section.asym.reverse {
  flex-direction: row-reverse;
}

.section .content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section .visual {
  flex: 1 1 320px;
  background-color: #d2c6b5;
  padding: 12px;
  transform: translateY(-10px);
}

.section .visual img {
  width: 100%;
  height: 260px;
}

.layered {
  background-color: #f0ece4;
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 20px 10vw -20px 10vw;
  background-color: #e1ddd2;
  z-index: 0;
}

.layered .content,
.layered .cards,
.layered .steps {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(31, 42, 36, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background-color: #fff6eb;
  border-radius: 14px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e5dfd2;
}

.price-tag {
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(31, 42, 36, 0.1);
}

.form {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd4cd;
  font-size: 14px;
  font-family: inherit;
}

.form textarea {
  min-height: 90px;
  resize: vertical;
}

.form .btn {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background-color: #1f2a24;
  color: #f6f4f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footer small {
  color: #c9d2c9;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #1f2a24;
  color: #f6f4f0;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(31, 42, 36, 0.12);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.grid-lite {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.info-block {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.page-title {
  font-size: 32px;
  margin: 0;
}

.subtle {
  color: #4a5a50;
}

.note {
  background-color: #e9e4da;
  padding: 14px;
  border-radius: 12px;
}

.image-frame {
  background-color: #d8dfd4;
  padding: 10px;
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  height: 220px;
}

.narrow {
  max-width: 720px;
}

.center {
  align-items: center;
  text-align: center;
}

.wide-offset {
  transform: translateX(18px);
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.split-list li {
  flex: 1 1 220px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.no-phone {
  font-weight: 600;
}

.spacer {
  height: 20px;
}

@media (max-width: 800px) {
  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }
}
