@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: #0c1b16;
  background: #f7f5f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 20px;
  background: rgba(247, 245, 240, 0.9);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1f6b4e;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 6vw;
}

.split-section.alt {
  background: #eff5ec;
}

.split-section.deep {
  background: #0f2a22;
  color: #f7f5f0;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-visual {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1f6b4e;
}

.split-section.deep .eyebrow {
  color: #b0e3bf;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

p {
  margin: 0 0 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1f6b4e;
  background: #1f6b4e;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.button.ghost {
  background: transparent;
  border: 1px solid #d0d8d2;
  color: inherit;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 107, 78, 0.2);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.stats strong {
  font-size: 1.8rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(12, 27, 22, 0.08);
}

.service-card img {
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1f6b4e;
}

.inline-cta {
  font-weight: 600;
  color: #1f6b4e;
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.timeline-item span {
  font-weight: 700;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: #f3efe6;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(12, 27, 22, 0.1);
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d8d2;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 110px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background: #0f2a22;
  color: #f7f5f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #b0e3bf;
}

.split-section.deep .button.secondary {
  border-color: #b0e3bf;
  color: #b0e3bf;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 auto 28px;
  width: min(90%, 520px);
  z-index: 5;
  background: #0f2a22;
  color: #f7f5f0;
  padding: 16px 20px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(12, 27, 22, 0.35);
}

.sticky-cta a {
  color: #0f2a22;
  background: #b0e3bf;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(12, 27, 22, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-panel {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(176, 227, 191, 0.25), rgba(31, 107, 78, 0.1));
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
}

.hero-visual {
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12% 10% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: rgba(176, 227, 191, 0.6);
  filter: blur(2px);
}

@media (min-width: 900px) {
  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .cookie-banner {
    max-width: 420px;
    left: auto;
  }
}
