* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a30;
  background: #f6f7f5;
  line-height: 1.6;
}

a {
  color: #1a5f5b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #dfe7e2;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 0 10px;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #cad5d1;
}

.hero-visual img {
  height: 420px;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(23, 40, 42, 0.7);
  color: #f6f8f7;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a5f5b;
  background: #1a5f5b;
  color: #f6f7f5;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1a5f5b;
}

.section {
  padding: 46px 0;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.85rem;
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.panel.accent {
  background: #eaf1ed;
}

.image-card {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #c9d1d0;
  position: relative;
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  align-self: flex-start;
}

.offset-card:nth-child(2) {
  align-self: flex-end;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1a5f5b;
}

.testimonial {
  padding: 18px;
  background: #1a5f5b;
  color: #f6f7f5;
  border-radius: 16px;
}

.form-shell {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.form-box {
  flex: 1 1 340px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.form-box label {
  display: block;
  margin-top: 14px;
  font-weight: 600;
}

.form-box select,
.form-box input {
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d1cc;
}

.form-box button {
  margin-top: 16px;
  width: 100%;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1a5f5b;
  color: #f6f7f5;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #0f1f21;
  color: #e7ecea;
  padding: 36px 0;
}

.footer a {
  color: #b2d3cf;
}

.footer-cols {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.legal {
  font-size: 0.9rem;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #d4d9d6;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-page {
  padding: 32px 0 60px;
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-block {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
}

.references {
  font-size: 0.85rem;
  margin-top: 12px;
}

@media (max-width: 860px) {
  .hero-visual img {
    height: 320px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
