* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f20;
  --muted: #5a6066;
  --surface: #f7f3ef;
  --surface-strong: #efe8e1;
  --accent: #3b6c5a;
  --accent-soft: #d7e6dd;
  --sand: #f2ede8;
  --clay: #d4c2b4;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
  background: #fff;
}

.sidebar {
  width: 260px;
  background: var(--surface);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 8px;
  border-radius: 6px;
  display: inline-flex;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  color: var(--ink);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 54px 60px;
}

.hero-inner {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--clay);
  box-shadow: 0 18px 40px var(--shadow);
}

.tagline {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: 34px;
  line-height: 1.2;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 42px 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: var(--surface-strong);
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c3bd;
  font-family: inherit;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 26px 60px 40px;
  background: #fff;
  border-top: 1px solid #eee6e0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 24px var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  background: var(--accent-soft);
  padding: 14px;
  border-radius: 12px;
}

.hero-bg {
  background: linear-gradient(120deg, rgba(59, 108, 90, 0.1), rgba(244, 237, 232, 0.9));
}

.bg-care {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-care p,
.bg-care h2 {
  color: #fff;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-trust p,
.bg-trust h2 {
  color: #fff;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 42px;
  border-radius: 18px;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: var(--clay);
}

.simple-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.simple-grid > div {
  flex: 1;
  min-width: 220px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-inner,
  .split {
    flex-direction: column;
  }
}
