* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f24;
  --muted: #5b6470;
  --accent: #1f6feb;
  --accent-dark: #174ea6;
  --sand: #f2f0ea;
  --stone: #e3e1da;
  --moss: #0f3d2e;
  --card: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 8px;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: var(--moss);
  background: #e7efe9;
  padding: 6px 10px;
  border-radius: 16px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin: 32px 0 48px;
  position: relative;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--sand);
  border-radius: 24px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero-copy p {
  color: var(--muted);
}

.hero-media {
  flex: 1;
  position: relative;
  margin-top: 24px;
}

.hero-media .img-wrap {
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d1d8d5;
  transform: translateY(-18px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.alt {
  background: var(--accent-dark);
}

.button.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  margin: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-header h2 {
  font-size: 30px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  background: var(--stone);
  padding: 24px;
  border-radius: 20px;
}

.split .panel.light {
  background: #ffffff;
  border: 1px solid #eceae4;
}

.img-wrap {
  background-color: #dcd5c9;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #eceae4;
}

.card .img-wrap {
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--moss);
}

.offset-block {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #f5f7f3;
  padding: 28px;
  border-radius: 28px;
  position: relative;
}

.offset-block .note {
  flex: 1;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-18px);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1.1;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #eceae4;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9d6cf;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-side {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-side .img-wrap {
  height: 240px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 32px 0 48px;
  color: var(--muted);
  border-top: 1px solid #eceae4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #e0ddd6;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #ffffff;
  border: 1px solid #e0ddd6;
  border-radius: 18px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  background: #f9f7f2;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed #d9d6cf;
  color: var(--muted);
}

.simple-hero {
  margin: 24px 0 36px;
  padding: 24px;
  background: #f0f2ee;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.two-column {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.two-column .panel {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #eceae4;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .form-wrap,
  .two-column {
    flex-direction: column;
  }

  .hero-media {
    margin-top: 0;
  }

  .sticky-cta {
    position: static;
    margin: 24px 0 0;
    justify-content: center;
  }
}
