* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f0;
  --ink: #1e1c19;
  --muted: #5f5b56;
  --accent: #2d6a4f;
  --accent-dark: #1f4e3a;
  --sand: #efe9e0;
  --leaf: #e3efe7;
  --clay: #d9cbb6;
  --border: #d6d0c8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--sand);
}

.hero {
  display: flex;
  gap: 32px;
  padding: 48px 24px;
  align-items: stretch;
}

.hero .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero .image-frame {
  flex: 1;
  background: var(--leaf);
  padding: 16px;
  border-radius: 18px;
}

.section {
  display: flex;
  gap: 32px;
  padding: 48px 0;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .text-block,
.section .media-block {
  flex: 1;
}

.media-block {
  background: var(--sand);
  padding: 16px;
  border-radius: 18px;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
  background: var(--clay);
  border-radius: 18px;
}

.feature-item {
  flex: 1 1 180px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  font-weight: 600;
  cursor: pointer;
  background: var(--accent-dark);
  color: #ffffff;
}

.ghost-button {
  background: transparent;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  padding: 40px 24px;
  background: #ffffff;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 16px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 4;
}

.floating-cta button {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.split-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
  background: var(--leaf);
  border-radius: 20px;
  align-items: center;
}

.split-banner .banner-text {
  flex: 1 1 240px;
}

.split-banner .banner-image {
  flex: 1 1 240px;
  background: var(--sand);
  padding: 12px;
  border-radius: 16px;
}

.legal-page h1 {
  margin-top: 0;
}

@media (max-width: 860px) {
  .hero,
  .section {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }
}
