* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #5a5a5f;
  --accent: #c43d2e;
  --accent-soft: #f8e2dd;
  --sage: #e5efe9;
  --sand: #f4f1ec;
  --stone: #d7d3cb;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--ink);
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.section {
  padding: 54px 0;
}

.section-tight {
  padding: 32px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding-top: 36px;
  position: relative;
}

.hero-card {
  background: var(--sand);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.img-frame {
  border-radius: 24px;
  overflow: hidden;
  background: var(--stone);
}

.img-frame.small {
  border-radius: 18px;
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offset-card {
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.offset-card.shift {
  margin-left: 40px;
}

.offset-card.shift-right {
  margin-right: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--sage);
  font-size: 13px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #ece8e3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-price {
  font-weight: 700;
  font-size: 18px;
}

.highlight {
  background: var(--accent-soft);
}

.zone {
  background: var(--sand);
  border-radius: 28px;
  padding: 28px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eee9e2;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid #ece8e3;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d1c8;
  font-size: 14px;
  font-family: inherit;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  background: #161618;
  color: #f2f2f2;
  padding: 40px 0;
  margin-top: 40px;
}

.footer a {
  color: #f2f2f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #cfcfcf;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e3ded5;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-content {
  max-width: 860px;
}

.hero-image {
  min-height: 360px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.contact-card {
  background: var(--sand);
  padding: 24px;
  border-radius: 18px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 32px;
  }

  .offset-card.shift,
  .offset-card.shift-right {
    margin: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
