* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f1d;
  --muted: #56605a;
  --brand: #2f7a5a;
  --brand-dark: #1e5a41;
  --accent: #d6f2d1;
  --sand: #f5f2ea;
  --sky: #e5f0f4;
  --line: #cbd6cf;
  --shadow: 0 18px 40px rgba(27, 31, 29, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fcfbf7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--brand-dark);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.header {
  padding: 28px 0 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 500;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  background: var(--sky);
  border-radius: 32px;
  padding: 28px;
  position: relative;
}

.hero-visual img {
  border-radius: 24px;
}

.hero-float {
  position: absolute;
  right: 18px;
  bottom: -24px;
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  width: 180px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.offset {
  align-self: flex-start;
  transform: translateX(-12px);
}

.offset-right {
  align-self: flex-end;
  transform: translateX(12px);
}

.layered {
  background: var(--sand);
  border-radius: 32px;
  padding: 40px;
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px dashed var(--line);
  pointer-events: none;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
}

.trust-band {
  background: var(--ink);
  color: #fff;
  padding: 28px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric {
  background: rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  border-radius: 16px;
}

.form-panel {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.form-hint {
  font-size: 13px;
  color: var(--muted);
}

.split-asym {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.background-image {
  background: url("../images/leaf-pattern.svg");
  background-size: cover;
  border-radius: 28px;
  padding: 40px;
  color: #0e2015;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  color: var(--brand-dark);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.footer {
  background: #0f1b16;
  color: #d8e5dd;
  padding: 40px 0 60px;
}

.footer a {
  color: #d8e5dd;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  width: min(320px, 90%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-inner {
  padding: 40px 0 80px;
}

.content-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  border-left: 4px solid var(--brand);
  padding-left: 16px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split-asym {
    flex-direction: row;
    align-items: stretch;
  }

  .card-row {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .trust-metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid .field {
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
