* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1f1f;
  --muted: #5b6161;
  --sand: #f5f2ed;
  --stone: #e6e0d7;
  --clay: #c9b6a3;
  --pine: #2d4a43;
  --mist: #f0f4f3;
  --sun: #d8a25a;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

header {
  background: var(--sand);
}

.top-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span:first-child {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.brand span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.ad-label {
  font-size: 12px;
  color: var(--pine);
  background: rgba(45, 74, 67, 0.12);
  padding: 6px 10px;
  border-radius: 14px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  border-color: var(--clay);
  background: #ffffff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 26px;
  background: var(--mist);
  border-radius: 24px;
  overflow: hidden;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-text {
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
}

.hero-media {
  background: var(--clay);
}

.bg-hero-1 {
  background-color: #d9d4cc;
}

.bg-hero-2 {
  background-color: #e7e1d9;
}

.bg-card-1 {
  background-color: #d5d1c9;
}

.bg-card-2 {
  background-color: #d6d9d6;
}

.bg-card-3 {
  background-color: #d3ccc4;
}

.bg-card-4 {
  background-color: #d0d8d6;
}

.bg-card-5 {
  background-color: #d5cec7;
}

.bg-process {
  background-color: #d7d1c8;
}

.bg-testimonial {
  background-color: #d2d6d2;
}

.bg-form {
  background-color: #d8d2c8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--pine);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--clay);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.section {
  padding: 50px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.highlight {
  background: var(--stone);
  padding: 26px;
  border-radius: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--stone);
  min-width: 220px;
}

.card img {
  border-radius: 14px;
  height: 160px;
}

.price {
  font-weight: 600;
  color: var(--pine);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  flex: 1 1 240px;
  padding: 18px;
  background: var(--mist);
  border-radius: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--stone);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 15px;
  width: 100%;
  font-family: inherit;
}

.inline-cta {
  color: var(--pine);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  background: var(--sand);
  padding: 30px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 14px;
}

.footer a {
  color: var(--pine);
  text-decoration: underline;
}

.notice {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--sun);
  color: #1a1a1a;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--stone);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: var(--mist);
  border-radius: 22px;
  overflow: hidden;
  padding: 22px;
}

.page-hero img {
  border-radius: 16px;
  height: 220px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--stone);
}
