* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #12332a;
  background: #f8fbf7;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: rgba(248, 251, 247, 0.92);
  border-bottom: 1px solid rgba(18, 51, 42, 0.12);
  position: relative;
  z-index: 2;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover {
  border-color: #2d7a63;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 6% 80px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 6%;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #2d7a63;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.35rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid #2d7a63;
  background: #2d7a63;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #2d7a63;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(45, 122, 99, 0.2);
}

.inline-link {
  font-weight: 600;
  color: #1f5d4a;
  text-decoration: underline;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(18, 51, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #1f5d4a;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #e7f2ec;
  padding: 28px;
  border-radius: 24px;
}

.stats strong {
  font-size: 1.6rem;
}

.quote {
  background: #12332a;
  color: #f3f8f5;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(18, 51, 42, 0.15);
  background: #fff;
}

.service-option input {
  accent-color: #2d7a63;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(18, 51, 42, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(18, 51, 42, 0.7);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: #1f5d4a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(18, 51, 42, 0.3);
  z-index: 4;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #102820;
  color: #dfeee8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.footer small {
  color: rgba(223, 238, 232, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 34px rgba(18, 51, 42, 0.2);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-header {
  padding: 60px 6% 40px;
  background: #eef6f1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-block {
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(18, 51, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy {
  max-width: 820px;
}

@media (min-width: 768px) {
  .hero,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero .copy,
  .split .copy {
    flex: 1;
  }

  .hero .visual,
  .split .visual {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
