* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #121212;
  --muted: #5b5b5b;
  --surface: #f5f3f0;
  --surface-strong: #e9e4dc;
  --accent: #2e5aac;
  --accent-soft: #dbe5ff;
  --warm: #f0e8df;
  --shadow: 0 18px 40px rgba(18, 18, 18, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 8vw 16px;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  color: #1a2d5f;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta-inline {
  color: var(--accent);
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 8vw 30px;
}

.hero-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-media {
  flex: 1 1 320px;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 8vw;
}

.section.soft {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background: var(--surface-strong);
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card .image-frame {
  min-height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-row.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d4d4;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #e5e1da;
  padding: 14px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
}

.footer {
  background: #0f0f0f;
  color: #ffffff;
  padding: 30px 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: #cfcfcf;
}

.footer small {
  color: #cfcfcf;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.center {
  text-align: center;
}

@media (max-width: 820px) {
  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
