* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f2b;
  --muted: #5a6475;
  --accent: #2b5c8a;
  --accent-dark: #1f4466;
  --peach: #f3ece4;
  --sky: #e7f0f7;
  --sand: #f7f3ec;
  --line: #d7dde6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 8vw 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  padding: 40px 8vw 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.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-visual {
  flex: 1 1 320px;
  position: relative;
}

.hero-card {
  background: var(--sky);
  padding: 26px;
  border-radius: 16px;
  transform: translateY(20px);
}

.image-frame {
  background-color: #d9e3ed;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-hero {
  height: 320px;
}

.frame-short {
  height: 160px;
}

.frame-medium {
  height: 260px;
}

.frame-tall {
  height: 300px;
}

.frame-lean {
  height: 280px;
}

.frame-gap {
  margin-top: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 1px solid var(--accent);
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 60px 8vw;
  position: relative;
}

.section.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.section.alt {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section .lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.offset-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  box-shadow: 0 18px 32px rgba(20, 27, 36, 0.08);
  transform: translateX(-20px);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: #e1e8f0;
}

.inline-media {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.inline-media .text-block {
  flex: 1 1 300px;
}

.inline-media .media-block {
  flex: 1 1 260px;
}

.highlight {
  padding: 22px;
  background: var(--peach);
  border-radius: 18px;
  max-width: 540px;
  transform: translateY(-24px);
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 28px;
  max-width: 520px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
  max-width: 260px;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw 60px;
  background: #111827;
  color: #e3e8ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #c9d8f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

.legal {
  font-size: 0.85rem;
  color: #c7ceda;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 32px rgba(20, 27, 36, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 10px 12px;
}

.no-phone {
  font-weight: 600;
  color: var(--muted);
}

.resource-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.resource-strip .note {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 18px;
}

.tagline {
  font-size: 1rem;
  color: var(--muted);
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.aside-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reference-list a {
  color: #c9d8f2;
}

@media (max-width: 900px) {
  .offset-panel {
    transform: none;
  }

  .highlight {
    transform: none;
  }

  .sticky-cta {
    position: static;
  }
}
