* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #4f4f4f;
  --paper: #f8f7f3;
  --accent: #2a6f97;
  --accent-soft: #d9e9f2;
  --sand: #efe9df;
  --stone: #e1e1e1;
  --deep: #0f2430;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 22px 6vw 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--deep);
}

main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: var(--deep);
  color: white;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .block {
  flex: 1;
}

.offset {
  transform: translateY(-18px);
}

.offset-right {
  transform: translate(12px, -12px);
}

.image-frame {
  background: var(--stone);
  padding: 12px;
  border-radius: 24px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: white;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--deep);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step strong {
  font-size: 1.2rem;
  color: var(--accent);
}

.quote {
  background: white;
  padding: 16px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
}

.form-card {
  background: white;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  font: inherit;
  background: white;
}

.inline-cta {
  color: var(--deep);
  font-weight: 600;
}

.footer {
  padding: 32px 6vw 40px;
  background: #121212;
  color: #e8e8e8;
}

.footer a {
  color: #e8e8e8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #c9c9c9;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: var(--deep);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: white;
  color: var(--ink);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button.secondary {
  background: #5f6a6a;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
