* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1d21;
  --muted: #5b6168;
  --accent: #2f6b5f;
  --accent-strong: #1f5147;
  --paper: #f6f5f2;
  --surface: #ffffff;
  --sand: #efe9e2;
  --charcoal: #24262b;
  --shadow: 0 18px 40px rgba(15, 20, 25, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: var(--surface);
  border-bottom: 1px solid #e1e2e5;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background: var(--charcoal);
  color: #f7f7f7;
}

.hero-inner {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: rgba(27, 29, 33, 0.88);
}

.hero-media {
  flex: 0.9;
  background-color: #35383f;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #d0d4db;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.inline-link {
  border-bottom: 1px solid currentColor;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.panel {
  flex: 1;
  min-width: 280px;
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.offset {
  margin-top: -40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.media-frame {
  width: 100%;
  height: 240px;
  background-color: #d8d2cc;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid #e2e5e8;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-copy {
  flex: 1.1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asym-media {
  flex: 0.9;
  min-width: 260px;
  background-color: #cdd1d6;
  height: 280px;
  overflow: hidden;
  border-radius: 18px;
}

.highlight {
  background: var(--sand);
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f9f9;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f3f4f6;
}

.form-wrap {
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-strong);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.footer {
  background: #14171a;
  color: #e6e6e6;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.muted {
  color: var(--muted);
}

.legal-box {
  background: var(--surface);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: var(--surface);
  border: 1px solid #d7dadd;
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  background: #fff3cd;
  border-radius: 12px;
  padding: 14px 18px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-inline {
  height: 220px;
  background-color: #d2d7dd;
  border-radius: 16px;
  overflow: hidden;
}

.small-cta {
  align-self: flex-start;
}

.page-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero .media-frame {
  height: 260px;
  flex: 1;
}

.page-hero .copy {
  flex: 1.2;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
