* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f8f7f4;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 20px 6vw;
  background: #f1efe9;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5f6c72;
  max-width: 260px;
  text-align: right;
}

.hero {
  padding: 70px 6vw 40px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: #3f4d59;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #2f5d62;
  color: #fff;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.btn.secondary {
  background: #d7e5e7;
  color: #1f2933;
}

.inline-link {
  font-weight: 600;
  color: #2f5d62;
}

.section {
  padding: 60px 6vw;
}

.section-title {
  font-size: 30px;
  margin-bottom: 14px;
}

.soft-bg {
  background: #ffffff;
}

.accent-bg {
  background: #e5e9e1;
}

.bg-pipes {
  background-image: url("https://images.unsplash.com/photo-1776524039930-ea1ed83b0f97?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f5f0;
}

.bg-panel {
  background: rgba(31, 41, 51, 0.65);
  padding: 28px;
  border-radius: 18px;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #d2d8d6;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}

.stat {
  flex: 1 1 180px;
  background: #f7f2ea;
  padding: 18px;
  border-radius: 16px;
}

.stat strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2f5d62;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.process-step {
  padding: 14px 18px;
  border-left: 3px solid #2f5d62;
  background: #f7f5f0;
  border-radius: 12px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: #4b5b66;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d0d7de;
  font-size: 14px;
}

.split-note {
  font-size: 14px;
  color: #5f6c72;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 30;
  background: #2f5d62;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f2933;
  color: #eaf0f2;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer a {
  color: #eaf0f2;
}

.disclaimer {
  margin-top: 18px;
  font-size: 12px;
  color: #b4c1c8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: none;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

.legal {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.content-image {
  border-radius: 20px;
  overflow: hidden;
  background: #d6dcd4;
}

.note-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e0edea;
  color: #2f5d62;
  font-size: 12px;
  margin-bottom: 12px;
}

@media (max-width: 760px) {
  .hero-title {
    font-size: 34px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
