* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1e1e1e;
  --muted: #5d5d5d;
  --accent: #1f6f8b;
  --accent-soft: #d6eef5;
  --paper: #f7f3ee;
  --paper-strong: #efe6dc;
  --line: #d8d2ca;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 8vw 10px;
  gap: 24px;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 40px 8vw 60px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 10px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0;
}

.hero-panel {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-card {
  background: var(--paper-strong);
  padding: 26px;
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow);
  position: relative;
  left: -30px;
}

.image-frame {
  background: #ddd6cf;
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  height: 360px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  cursor: pointer;
}

.section {
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.asym {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  margin: 0 6vw 40px;
  padding: 60px 6vw;
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.split {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-frame {
  height: 170px;
  border-radius: 16px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  padding: 40px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #111;
  color: #f1f1f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #c7c7c7;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.sticky-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-panel {
    justify-content: center;
  }

  .hero-card {
    left: 0;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto;
  }
}
