* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1a17;
  --muted: #586664;
  --surface: #f5f7f4;
  --accent: #2b7a6b;
  --accent-dark: #1f584d;
  --highlight: #dff0e8;
  --sand: #f2eee6;
  --line: #dde3de;
  --shadow: rgba(15, 26, 23, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--highlight);
  font-size: 0.8rem;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.split {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 52%;
}

.split .visual {
  flex: 1 1 48%;
}

.hero {
  background: var(--surface);
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.image-frame {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #c9d4cf;
  box-shadow: 0 20px 40px var(--shadow);
}

.frame-sage {
  background-color: #c6d3d1;
}

.frame-mist {
  background-color: #cbd8d3;
}

.frame-cloud {
  background-color: #dfe7e2;
}

.frame-dune {
  background-color: #d6e1dd;
}

.frame-fern {
  background-color: #cfdad6;
}

.frame-stone {
  background-color: #d3ddd8;
}

.frame-haze {
  background-color: #d7e0dd;
}

.frame-birch {
  background-color: #d0dad7;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px var(--shadow);
}

.feature-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.8rem;
  color: var(--muted);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-muted {
  color: var(--muted);
}

.cta-band {
  background: var(--highlight);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band .split {
  padding: 40px 0;
}

.cta-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px var(--shadow);
}

.form-block {
  background: var(--surface);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
}

.form-block form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.split-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-list .item {
  flex: 1 1 300px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.background-panel {
  background: var(--sand);
  border-radius: 28px;
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.background-panel .overlay {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-size: cover;
  background-position: center;
}

.overlay-sunset {
  background-image: url("https://images.unsplash.com/photo-1764594589556-0d4f1a71a7ca?w=1400&q=80");
}

.background-panel .content {
  position: relative;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  background: #f8f9f7;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 18px 32px var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 320px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-block {
  padding: 56px 0;
}

.notice {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
}

.ghost {
  color: var(--muted);
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
[hidden] {
  display: none !important;
}