* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f5f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e1e6eb;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 320px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.section {
  padding: 64px 6%;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  min-width: 280px;
}

.split-text h1,
.split-text h2,
.split-text h3 {
  margin-top: 0;
}

.subheading {
  color: #4b5563;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.button {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2933;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.outline {
  background: transparent;
  border: 1px solid #1f2933;
  color: #1f2933;
}

.inline-link {
  font-weight: 600;
  color: #0f6b8f;
  text-decoration: underline;
}

.media-frame {
  background: #d7dde3;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f6b8f;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cdd5df;
  font-size: 0.95rem;
}

.form-card button {
  align-self: flex-start;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: #f0f4f8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta button {
  background: #0f6b8f;
  color: #ffffff;
}

footer {
  margin-top: auto;
  background: #1f2933;
  color: #f5f3ef;
  padding: 40px 6%;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.split-note {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.muted {
  color: #6b7280;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6f4f8;
  color: #0f6b8f;
  font-size: 0.85rem;
  font-weight: 600;
}

.list-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
}

.service-row span {
  font-weight: 600;
}

.reference-list {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 920px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6% 0;
  }
}
