* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5a5f66;
  --bg: #f7f4f1;
  --accent: #2f5b4f;
  --accent-soft: #e1ebe7;
  --highlight: #f0e0c8;
  --border: #d9d3cc;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 18px;
  background: #fff9f1;
}

.hero {
  display: flex;
  gap: 36px;
  padding: 40px 6% 0;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-content,
.hero-visual {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-visual {
  background: #dcd3c9;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.section {
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .visual {
  flex: 1 1 320px;
}

.visual {
  background: #d6dde1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: #d7d1c7;
  min-height: 160px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px dashed var(--accent);
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.pricing-row strong {
  font-size: 1.05rem;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
}

.sticky-cta a {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 220px;
  color: var(--muted);
}

.notice {
  background: var(--highlight);
  padding: 16px 18px;
  border-radius: 14px;
}

.muted {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-max {
  max-width: 960px;
}

.spaced {
  margin-top: 12px;
}
