* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a2e;
  --muted: #56656b;
  --sand: #f4f0ea;
  --mist: #eef3f2;
  --sage: #d7e4df;
  --sea: #2f6b6a;
  --peach: #f1d7c8;
  --rose: #f7ebe4;
  --accent: #2b5d5c;
  --shadow: 0 20px 40px rgba(20, 34, 37, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 18px;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--sage);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 24px 0 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-media {
  flex: 1;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button.link {
  background: transparent;
  border: none;
  color: var(--accent);
  padding: 0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
  box-shadow: var(--shadow);
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-block {
  margin: 48px 0;
  padding: 32px;
  border-radius: 24px;
  background: var(--sand);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.section-block .block-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-block .block-media {
  flex: 1 1 260px;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card-media {
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.steps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 200px;
  padding: 18px;
  border-radius: 18px;
  background: var(--mist);
}

.form-wrap {
  margin: 40px 0;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.form-wrap .form-text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #ccd5d2;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.footer {
  border-top: 1px solid #e3e7e6;
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.bg-sage {
  background: var(--sage);
}

.bg-peach {
  background: var(--peach);
}

.bg-mist {
  background: var(--mist);
}

.bg-rose {
  background: var(--rose);
}

.bg-sand {
  background: var(--sand);
}

@media (max-width: 960px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
