* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #16212d;
  background: #f7f7f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 16px;
  background: #f7f7f3;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-bottom: 1px solid #16212d;
}

.ad-disclosure {
  font-size: 12px;
  color: #3b4a5a;
  max-width: 240px;
}

main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.tight {
  padding: 48px 6vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding-top: 40px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 17px;
  color: #2d3b4a;
  margin-bottom: 24px;
  max-width: 540px;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.section h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.section p {
  margin-bottom: 16px;
  color: #2c3b49;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  background: #16212d;
  color: #ffffff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: #e5e1d7;
  color: #16212d;
}

.btn:focus,
.btn:hover {
  filter: brightness(0.92);
}

.inline-link {
  text-decoration: underline;
}

.image-frame {
  background-color: #d8d9d4;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(22, 33, 45, 0.08);
}

.card .image-frame {
  height: 160px;
  border-radius: 16px;
}

.card .image-frame img {
  height: 100%;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef0eb;
  font-size: 12px;
  color: #3b4a5a;
}

.panel {
  background: #f0efe9;
  padding: 28px;
  border-radius: 22px;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.bg-insight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 33, 45, 0.6);
}

.bg-insight .content {
  position: relative;
  z-index: 1;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.bg-context::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 29, 42, 0.58);
}

.bg-context .content {
  position: relative;
  z-index: 1;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(22, 33, 45, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row label {
  font-size: 13px;
  color: #2d3b49;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9cdd1;
  font-size: 14px;
  background: #fafafa;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: #3b4a5a;
  margin-top: 12px;
}

.footer {
  padding: 36px 6vw 60px;
  background: #101923;
  color: #e4e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e4e7eb;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: #d4d7dc;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  box-shadow: 0 12px 30px rgba(22, 33, 45, 0.18);
  z-index: 999;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
}

.sticky-cta .btn {
  box-shadow: 0 10px 20px rgba(22, 33, 45, 0.2);
}

.small-hero {
  font-size: 30px;
  margin-bottom: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  font-size: 14px;
  color: #435366;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
  }
}
