* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f5f2ee;
  --bg-dark: #111213;
  --accent: #6b4f2d;
  --accent-soft: #d8c4a6;
  --text: #1b1c1e;
  --muted: #5b6168;
  --card: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #ede7df;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--accent);
}

.sidebar .cta {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 36px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.hero .hero-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  object-fit: cover;
}

.hero h1 {
  font-size: 2.4rem;
  max-width: 520px;
}

.hero .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1;
  min-width: 240px;
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.07);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.testimonial {
  background: #1f2226;
  color: #f3f3f3;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing .price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  align-items: center;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.form-block {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.form-block form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c6c9cc;
  font-size: 0.95rem;
}

.form-block button {
  margin-top: 8px;
}

.image-band {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-band img {
  flex: 1;
  min-width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-strip {
  background: var(--bg-dark);
  color: #fff;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.subtle {
  color: var(--muted);
}

.highlight {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 12px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }

  .sidebar .cta {
    margin-top: 0;
  }

  .content {
    padding: 24px 6vw 72px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
