* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #5d6a6f;
  --soft: #f3f0ea;
  --accent: #3c7c6b;
  --accent-dark: #2d5f52;
  --sand: #efe7dd;
  --mist: #e6edf0;
  --sun: #f7f0d8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

header {
  padding: 22px 6%;
  border-bottom: 1px solid #e3ded5;
  background: #fffdf9;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #d9d0c4;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 260px;
}

.section {
  padding: 60px 6%;
}

.split-section {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section > div,
.split-section > figure {
  flex: 1 1 320px;
}

.section h1,
.section h2,
.section h3 {
  margin: 0 0 16px 0;
}

.section p {
  margin: 0 0 14px 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero {
  background: var(--sun);
}

.image-frame {
  background-color: #dfe6e3;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(31, 42, 46, 0.12);
}

.image-frame img {
  width: 100%;
  height: 360px;
  border-radius: 14px;
}

.mini-image img {
  height: 260px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 210px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee4d7;
}

.card h4 {
  margin: 0 0 8px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--mist);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px dashed var(--accent-dark);
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary:hover,
.button.ghost:hover {
  background: var(--accent-dark);
  color: #fff;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 2px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eadfd0;
}

.pricing-item span {
  font-weight: 600;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #e6dccf;
  box-shadow: 0 14px 30px rgba(31, 42, 46, 0.08);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px 0;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d0c4;
  font-size: 15px;
  font-family: inherit;
}

.form-card button {
  margin-top: 16px;
  width: 100%;
}

.tagline {
  font-size: 18px;
  color: var(--muted);
}

.accent-block {
  background: var(--sand);
}

.cool-block {
  background: var(--mist);
}

.footer {
  background: #1f2a2e;
  color: #f3f1ee;
  padding: 40px 6%;
}

.footer a {
  color: #f3f1ee;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-grid div {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #c9d1d5;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eadfd0;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.18);
  width: 300px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.legal-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .split-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .image-frame img {
    height: 280px;
  }

  .sticky-cta {
    right: 14px;
  }
}
