* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #0b1a14;
  background: #f6f8f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: #0b1a14;
}

.hero {
  padding: 36px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.hero__panel {
  background: #e2efe0;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(11, 26, 20, 0.12);
  position: relative;
  z-index: 2;
}

.hero__panel h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero__panel p {
  margin-bottom: 18px;
  max-width: 520px;
}

.hero__media {
  margin-top: -40px;
  border-radius: 20px;
  overflow: hidden;
  align-self: flex-end;
  width: min(520px, 90%);
  box-shadow: 0 20px 40px rgba(11, 26, 20, 0.18);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #0b1a14;
  font-weight: 600;
  background: #0b1a14;
  color: #f6f8f4;
}

.button--ghost {
  background: transparent;
  color: #0b1a14;
}

.section {
  padding: 68px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section__title {
  font-size: 1.8rem;
  max-width: 680px;
}

.section__lead {
  max-width: 640px;
}

.offset-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  align-self: flex-start;
  box-shadow: 0 20px 45px rgba(11, 26, 20, 0.1);
}

.offset-block--right {
  align-self: flex-end;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row__media {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
}

.split-row__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #dce8d8;
  font-size: 0.85rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 35px rgba(11, 26, 20, 0.08);
}

.card img {
  border-radius: 12px;
}

.section--dark {
  background: #0b1a14;
  color: #f6f8f4;
}

.section--dark .button {
  border-color: #f6f8f4;
  background: #f6f8f4;
  color: #0b1a14;
}

.section--accent {
  background: #e7f0e3;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.stat span {
  font-size: 1.6rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(11, 26, 20, 0.08);
}

.service strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(11, 26, 20, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0b1a14;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #bcc9c1;
  font-size: 1rem;
  background: #fdfdfc;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1a3d2e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(11, 26, 20, 0.25);
  z-index: 20;
}

.footer {
  padding: 32px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #eef3ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(11, 26, 20, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  font-size: 2.1rem;
  padding: 24px 6vw 0;
}

.page-intro {
  padding: 12px 6vw 30px;
  max-width: 720px;
}

.contact-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 25px rgba(11, 26, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 46px;
  }

  .hero__panel {
    flex: 1.1;
  }

  .hero__media {
    margin-top: 0;
    flex: 0.9;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row--reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service {
    flex: 1 1 calc(50% - 18px);
  }

  .stats {
    flex-direction: row;
  }
}
