* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0;
  border-bottom: 1px solid #ded9d2;
  background: #fdfbf8;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b5f56;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  background: #1b1b1b;
  color: #fefefe;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  padding: 64px 0;
  background: #f6f0ea;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-visual {
  flex: 1;
  min-height: 360px;
}

.image-frame {
  background: #d9d3cc;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #594e45;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fefefe;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f3c9a4;
  color: #1b1b1b;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #fffdfb;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.05rem;
  color: #4d433a;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.pillar {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #ece4dc;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4dcd4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: #1b1b1b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ece4dc;
}

.step-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #a26d3d;
}

.form-wrapper {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e4dcd4;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.9rem;
  color: #4d433a;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d0c7;
  font-size: 1rem;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 20, 0.68);
}

.background-panel .container {
  position: relative;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.testimonial {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #ece4dc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial img {
  border-radius: 12px;
  height: 160px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.footer {
  padding: 36px 0;
  background: #1b1b1b;
  color: #f4f1ed;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #f4f1ed;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #d6cfc7;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e4dcd4;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  flex: 1 1 120px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 48px 0 24px;
  background: #f1ebe4;
}

.page-content {
  padding: 32px 0 56px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  background: #fff7ed;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #efdcc7;
}

@media (max-width: 920px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
