* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b2430;
  --muted: #4b5563;
  --accent: #2f7c6e;
  --accent-dark: #245e54;
  --mist: #f2f5f4;
  --sand: #f7f3ed;
  --stone: #e3e7e5;
  --night: #0f1c1a;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  background: var(--mist);
  border-bottom: 1px solid var(--stone);
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 6%;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 320px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.cta-btn {
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(15, 28, 26, 0.2);
}

.section {
  padding: 68px 6%;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
}

.split .media {
  flex: 1;
}

.hero {
  background: var(--sand);
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  padding: 8px 14px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--stone);
}

.image-frame {
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.card-image {
  min-height: 180px;
}

.panel {
  background: var(--mist);
  padding: 28px;
  border-radius: 18px;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 180px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--stone);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--stone);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--stone);
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 22px;
}

.service-select button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stone);
  background: #ffffff;
  cursor: pointer;
}

.service-select button.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 14px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.bg-forest {
  background: var(--night);
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-forest .panel {
  background: rgba(15, 28, 26, 0.7);
  color: #ffffff;
  border: none;
}

.bg-aurora {
  background: var(--sand);
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-aurora .panel {
  background: rgba(255, 255, 255, 0.9);
}

footer {
  background: var(--night);
  color: #ffffff;
  padding: 48px 6%;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 18px;
}

.footer-grid div {
  flex: 1;
  min-width: 220px;
}

.disclaimer {
  font-size: 13px;
  color: #d6d9d6;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 20;
}

.cookie-banner p {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 56px 6%;
  background: var(--mist);
}

.page-hero h1 {
  font-size: 34px;
}

.icon-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.inline-svg {
  width: 44px;
  height: 44px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
