* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2429;
  --muted: #5d6a74;
  --accent: #2f6b5d;
  --accent-soft: #e1efe9;
  --surface: #f6f4f1;
  --surface-deep: #e9e2db;
  --border: #d6d3cf;
  --highlight: #f1f7f5;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.06em;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 999px;
}

.nav-links a:focus,
.nav-links a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
}

.hero {
  background: var(--surface);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-visual {
  flex: 1 1 320px;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  padding: 70px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:focus,
.btn:hover {
  filter: brightness(0.95);
}

.panel {
  background: var(--surface);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 14px;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.image-frame {
  background: var(--surface-deep);
  border-radius: 26px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.bg-insight {
  background-color: #e6f0ec;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background: rgba(255, 255, 255, 0.88);
  padding: 48px;
  border-radius: 28px;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.quote {
  flex: 1 1 260px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: var(--highlight);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 10;
}

.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer {
  margin-top: auto;
  background: var(--ink);
  color: #fff;
  padding: 40px 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #d6d6d6;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  max-width: 340px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.simple-header {
  background: var(--surface);
  padding: 50px 0 30px;
}

.inline-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.table-row span {
  flex: 1 1 160px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-block li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list-block li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.note-box {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 8px;
}

.hero-img {
  width: 100%;
  height: 420px;
}

@media (max-width: 800px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  h1 {
    font-size: 34px;
  }

  .hero-img {
    height: 320px;
  }
}
