* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0f1b1f;
  background: #f7f8f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 12px;
  background: #f7f8f6;
}

.nav-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.82rem;
  color: #3c4c52;
  max-width: 320px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: #0f1b1f;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 6vw 96px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.panel.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(10, 20, 24, 0.08);
}

.panel.media {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #dfe6e2;
}

.panel.media img {
  width: 100%;
  height: 100%;
}

.tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4f6c5f;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #0f1b1f;
  background: #0f1b1f;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #0f1b1f;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 27, 31, 0.15);
}

.inline-link {
  color: #235b46;
  font-weight: 600;
  border-bottom: 1px solid #235b46;
}

.inline-link:hover,
.inline-link:focus {
  color: #0f1b1f;
  border-bottom-color: #0f1b1f;
}

.metrics {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 120px;
  background: #f0f3ef;
  padding: 16px;
  border-radius: 16px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 27, 31, 0.08);
}

.service-row img {
  width: 140px;
  height: 110px;
  border-radius: 12px;
  background: #e0e6e2;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: #1e4e3b;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7d2cd;
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
}

.form-shell button {
  align-self: flex-start;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  background: #f1a24f;
  color: #1b1206;
  border: 1px solid #f1a24f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.floating-cta:hover,
.floating-cta:focus {
  box-shadow: 0 12px 24px rgba(241, 162, 79, 0.4);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #10191c;
  color: #f7f7f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d4d9d6;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  color: #0f1b1f;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.callout {
  background: #eef5f0;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #d4e3d9;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 16px 30px rgba(15, 27, 31, 0.1);
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .floating-cta {
    right: 16px;
  }
}
