* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2328;
  --muted: #5a6470;
  --accent: #1d5b7a;
  --accent-dark: #14435a;
  --soft: #f4f1ec;
  --surface: #ffffff;
  --border: #d8dbe2;
  --highlight: #f8efe1;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 32px 6vw 72px;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 6vw;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .split-text,
.split .split-media {
  flex: 1 1 320px;
}

.hero {
  background: var(--surface);
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--border);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background-color: #e5e0d8;
  min-height: 240px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 16px;
}

.card h3 {
  font-size: 1.1rem;
}

.muted {
  color: var(--muted);
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.highlight {
  background: var(--highlight);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.form-section {
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid var(--border);
  padding: 32px;
}

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-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.site-footer {
  background: var(--surface);
  padding: 32px 6vw 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  background: var(--surface);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.two-column > div {
  flex: 1 1 280px;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: var(--accent-dark);
  color: #fff;
  padding: 22px;
  border-radius: 20px;
}

.cta-strip a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
