:root {
  color-scheme: light;
  --ink: #1e2530;
  --muted: #5f6b7a;
  --accent: #2b59c3;
  --accent-soft: #e7eefc;
  --sand: #f4f2ee;
  --sunset: #efe8ff;
  --border: #e3e7ee;
  --shadow: 0 18px 40px rgba(27, 34, 48, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #f8f9fb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 28px 6vw 8px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 4px;
}

.nav a:hover {
  color: var(--accent);
}

.ad-label {
  font-size: 12px;
  color: #3d4a5c;
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 6vw 60px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1;
}

.panel {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.panel.soft {
  background: var(--sand);
  box-shadow: none;
}

.panel.sunset {
  background: var(--sunset);
  box-shadow: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 10px 0 14px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.btn:hover {
  background: #244ba8;
  border-color: #244ba8;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.link-inline {
  color: var(--accent);
  font-weight: 600;
}

.link-inline:hover {
  text-decoration: underline;
}

.image-frame {
  border-radius: 26px;
  overflow: hidden;
  background: #dfe7f6;
  box-shadow: var(--shadow);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 50px 6vw;
}

.section.tight {
  padding: 32px 6vw;
}

.section.bg-insight {
  background: #101826;
  color: #fff;
}

.section.bg-insight p,
.section.bg-insight h2 {
  color: #fff;
}

.bg-panel {
  background: #162035;
  border-radius: 32px;
  padding: 34px;
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-panel p,
.bg-panel h2 {
  color: #fff;
}

.card-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  background: #e2e6ef;
}

.price {
  font-weight: 600;
  color: var(--ink);
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #0f141d;
  color: #d5dbe7;
}

.footer a {
  color: #d5dbe7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  margin-top: 16px;
  color: #b6bfcc;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.sticky-cta:hover {
  background: #244ba8;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  max-width: 360px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.cookie-actions .btn-outline {
  background: transparent;
}

.thanks-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.two-column {
  display: flex;
  gap: 24px;
}

.two-column > * {
  flex: 1;
}

@media (max-width: 900px) {
  .split,
  .two-column {
    flex-direction: column;
  }

  h1 {
    font-size: 32px;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
