* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1f1d;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1d5d4e;
  text-decoration: none;
}

a:hover {
  color: #143c32;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 20px 0;
  background: #f7f6f2;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #1d5d4e;
  color: #1d5d4e;
  font-weight: 600;
}

.split {
  padding: 56px 0;
}

.split .split-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse .split-inner {
  flex-direction: column;
}

.panel {
  flex: 1;
}

.panel-content h1,
.panel-content h2,
.panel-content h3 {
  margin-top: 0;
}

.panel-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.panel-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.panel-content p {
  margin: 12px 0;
}

.panel-media {
  border-radius: 24px;
  overflow: hidden;
  background: #dfe7dd;
  padding: 24px;
}

.section-alt {
  background: #ffffff;
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5a6b63;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  background: #1d5d4e;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #1d5d4e;
  color: #1d5d4e;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 12px 16px;
  border-left: 3px solid #1d5d4e;
  background: #f0f3ef;
}

.quote {
  padding: 20px;
  background: #e8f0ec;
  border-radius: 16px;
}

.service-card {
  padding: 20px;
  border-radius: 18px;
  background: #f4f5f2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1d5d4e;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(20, 30, 25, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9d1ca;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 40px 0 70px;
  background: #0f1f19;
  color: #e6f1eb;
}

.footer a {
  color: #e6f1eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #efb93a;
  color: #1b1f1d;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(20, 30, 25, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 30, 25, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #1d5d4e;
  background: transparent;
  color: #1d5d4e;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: #1d5d4e;
  color: #fff;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20, 30, 25, 0.08);
}

@media (min-width: 900px) {
  .split .split-inner {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse .split-inner {
    flex-direction: row-reverse;
  }

  .nav-inner {
    gap: 32px;
  }
}
