* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --surface: #ffffff;
  --ink: #1f1b16;
  --muted: #5c524b;
  --accent: #9d4b3c;
  --accent-soft: #f1d9d1;
  --leaf: #3d6b4f;
  --sand: #efe6dc;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  font-size: 24px;
  letter-spacing: 0.4px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 12px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid #eadfd5;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  transform: translateY(-1px);
  background: var(--accent-soft);
}

.ad-label {
  padding: 6px 10px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 36px;
}

.hero-card {
  flex: 1 1 320px;
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.15;
}

.hero-media {
  flex: 1 1 360px;
  border-radius: 26px;
  overflow: hidden;
  background: #e8dacf;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #833a2e;
  transform: translateY(-1px);
}

.btn.alt {
  background: var(--leaf);
}

.btn.alt:hover {
  background: #2e553f;
}

.link-inline {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.link-inline:hover {
  border-color: var(--accent);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: #eadfd5;
}

.section {
  margin: 36px 0;
}

.section-title {
  font-size: 24px;
  margin-bottom: 18px;
}

.section-soft {
  background: var(--sand);
  border-radius: 28px;
  padding: 28px;
}

.section-contrast {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #d8c6b7;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-start;
}

.sticky-card {
  background: var(--accent-soft);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  border-radius: 14px;
  border: 1px solid #d8cfc6;
  padding: 12px;
  font-size: 14px;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #dccfc4;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 14px;
  background: #e9e0d7;
  font-size: 12px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing {
  font-size: 18px;
  font-weight: 700;
  color: var(--leaf);
}

.notice {
  background: #efe1d6;
  border-radius: 16px;
  padding: 16px;
}

@media (max-width: 780px) {
  .hero h1 {
    font-size: 30px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
