* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2428;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b4f72;
  text-decoration: none;
}

a:hover {
  color: #0e2a3d;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #fff;
  border-bottom: 1px solid #e6e2dc;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  background: #ffe9c6;
  color: #6b4c1f;
  padding: 4px 8px;
  border-radius: 999px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 50%;
  min-width: 300px;
  padding: 60px 6vw;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  background: #fff;
}

.split .media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #efe9e1;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-measure {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-quality {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-consult {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.image-frame {
  background: #d9d2c9;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1b4f72;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #1b4f72;
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #f3c775;
  color: #533612;
}

.btn:hover {
  background: #163e57;
  color: #fff;
}

.btn.secondary:hover {
  background: #e9b85b;
  color: #533612;
}

.section-title {
  font-size: 2.2rem;
  margin: 0;
}

.muted {
  color: #5c646b;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1b4f72;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 10;
}

.sticky-cta:hover {
  background: #163e57;
  color: #fff;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap select,
.form-wrap input,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8d2c8;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: #1c2328;
  color: #e9eef1;
  padding: 40px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: #f3c775;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  max-width: 360px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.hero-badge {
  font-size: 0.95rem;
  font-weight: 600;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.page-banner {
  padding: 40px 6vw 10px;
  background: #efe9e1;
}

.note {
  background: #fff5e2;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #f1dcc1;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col > div {
  flex: 1 1 260px;
}

.mini-image {
  background: #d6d0c8;
  border-radius: 14px;
  overflow: hidden;
}

.mini-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
}

.service-row strong {
  font-size: 1.05rem;
}

.hero-image {
  height: 100%;
  min-height: 320px;
}

.hero-image img {
  height: 100%;
  width: 100%;
}

.small-print {
  font-size: 0.9rem;
  color: #697178;
}

@media (max-width: 900px) {
  .split .copy,
  .split .media {
    padding: 40px 6vw;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
