* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2933;
  --muted: #5b6770;
  --bg: #f5f2ed;
  --bg-alt: #ffffff;
  --accent: #0f766e;
  --accent-dark: #0b5c55;
  --line: #e5e0d8;
  --sand: #f0e6da;
  --sun: #f7c873;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 0 80px;
}

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  padding: 0 6vw;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel h1,
.panel h2,
.panel h3 {
  line-height: 1.2;
}

.panel h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.panel h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.panel h3 {
  font-size: 1.2rem;
}

.muted {
  color: var(--muted);
}

.image-box {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(31, 41, 51, 0.08);
}

.layered {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
}

.btn.secondary {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid var(--sun);
  padding-left: 16px;
}

.form-card {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 32px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--sand);
  padding: 14px;
  border-radius: 12px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  box-shadow: 0 12px 32px rgba(31, 41, 51, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 0.92rem;
  color: var(--muted);
}

.highlight {
  background: var(--sun);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.compact {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 10px;
    bottom: 90px;
  }

  .topbar {
    align-items: flex-start;
  }
}
