*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f2b;
  --muted: #5c6370;
  --paper: #f7f5f2;
  --accent: #3f5bd8;
  --accent-dark: #2f439f;
  --sage: #dfe7e2;
  --sun: #f2d3a7;
  --cloud: #eef2f7;
  --line: #d7dbe2;
  --shadow: 0 18px 45px rgba(20, 24, 36, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sun);
  color: #5a3b10;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 60px 6vw 40px;
  background: linear-gradient(120deg, #ffffff 15%, var(--cloud) 75%);
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  background: #cfd7e6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: -40px;
  max-width: 520px;
}

.section {
  padding: 48px 6vw;
}

.section.asymmetric {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section.asymmetric.reverse {
  flex-direction: row-reverse;
}

.section .media-box {
  flex: 1 1 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #c9d3de;
  box-shadow: var(--shadow);
}

.bg-slate {
  background: #dbe3ef;
}

.bg-sand {
  background: #e6e0d8;
}

.bg-mist {
  background: #d7dde5;
}

.bg-sage {
  background: #dbe7e2;
}

.section .content-box {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage);
  color: #2a3d35;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.split > div {
  flex: 1 1 220px;
}

.testimonial {
  background: var(--cloud);
  padding: 16px;
  border-radius: 14px;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.notice {
  background: var(--sun);
  border-radius: 18px;
  padding: 20px;
  font-size: 0.95rem;
}

.page-title {
  font-size: 2rem;
  margin: 0;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
