* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1d22;
  --muted: #5c6470;
  --surface: #ffffff;
  --accent: #2a5b8f;
  --accent-soft: #e7eef7;
  --warm: #f6efe8;
  --sage: #e6f0ee;
  --shadow: 0 20px 40px rgba(18, 28, 44, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #f4f5f7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.side-nav {
  width: 260px;
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e6e8ec;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
  width: fit-content;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.button.secondary {
  background: #1f2a3a;
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 32px 80px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-text {
  flex: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1;
  min-height: 320px;
  background: #cbd5e1;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.section.alt {
  background: var(--warm);
}

.section.sage {
  background: var(--sage);
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.img-frame {
  background: #d8dee6;
  border-radius: 12px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-shell {
  display: flex;
  gap: 24px;
}

.form-shell .form-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8d0dc;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.meta {
  color: #c4c9d4;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.page-hero .img-frame img {
  height: 220px;
}

.notice {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 16px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid #e6e8ec;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-cta {
    margin-top: 0;
  }

  .hero,
  .split,
  .form-shell,
  .page-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
