* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a35;
  background: #f7f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
  background: #f7f7f4;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  background: #e8efe7;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f6f5c;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #354657;
}

.btn.light {
  background: #dfe7e3;
  color: #1f2a35;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 48px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-block.center {
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #4b5b68;
}

h1, h2, h3 {
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

p {
  font-size: 1rem;
}

.image-frame {
  background: #e2e7e4;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  min-width: 160px;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f1f4f2;
  border-radius: 999px;
  font-size: 0.8rem;
}

.section-soft {
  background: #eff3f1;
}

.section-ink {
  background: #1f2a35;
  color: #f7f7f4;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
}

.list-item span {
  font-weight: 600;
  min-width: 32px;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6dcd8;
  font-size: 0.95rem;
}

.footer {
  padding: 48px 0;
  background: #f7f7f4;
  border-top: 1px solid #e2e7e4;
}

.footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer a {
  display: inline-flex;
  margin-right: 12px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #4b5b68;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  display: none;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 60px 0 30px;
}

.page-hero .split {
  padding: 0;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    text-align: center;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
