* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #f7f5f2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav a:hover,
.nav a:focus {
  border-bottom-color: #1e1f24;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b5d66;
  padding: 6px 10px;
  border: 1px solid #d5d6dc;
  border-radius: 999px;
}

.hero {
  padding: 48px 6% 30px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 36px 6%;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1;
}

.section-muted {
  background: #ece9e3;
}

.section-dark {
  background: #1e1f24;
  color: #f7f5f2;
}

.section-dark .btn.secondary {
  border-color: #f7f5f2;
  color: #f7f5f2;
}

.img-frame {
  background: #ded8cf;
  border-radius: 18px;
  overflow: hidden;
}

.img-tall {
  height: 380px;
}

.img-wide {
  height: 300px;
}

.img-small {
  height: 200px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1e1f24;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.btn.primary {
  background: #1e1f24;
  color: #f7f5f2;
}

.btn.secondary {
  background: transparent;
  color: #1e1f24;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  padding: 16px;
  background: #f7f5f2;
  border-radius: 14px;
  border: 1px solid #d4d1cc;
}

.price-item strong {
  font-size: 1.05rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid #1e1f24;
  background: #f7f5f2;
}

.form-card {
  padding: 24px;
  background: #f7f5f2;
  border-radius: 18px;
  border: 1px solid #d4d1cc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel {
  padding: 24px;
  border-radius: 16px;
}

.panel-muted {
  background: #ece9e3;
}

form label {
  font-weight: 600;
  font-size: 0.95rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c6c1;
  font-size: 1rem;
  background: #fff;
}

form button {
  margin-top: 8px;
}

.inline-link {
  color: #1e1f24;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #f7f5f2;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid #d4d1cc;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background: #1e1f24;
  color: #f7f5f2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.notice {
  font-size: 0.85rem;
  color: #d5d6dc;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #d4d1cc;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 2.4rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  color: #3c3f46;
}

.section-title {
  font-size: 1.7rem;
  line-height: 1.3;
}

.muted {
  color: #4c4f57;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
