* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

header {
  padding: 28px 6vw 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  background: #ffe9c7;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-left: auto;
  font-size: 14px;
}

.section {
  padding: 60px 6vw;
}

.section.narrow {
  max-width: 960px;
  margin: 0 auto;
}

.section.dark {
  background: #111;
  color: #f5f4ef;
}

.hero {
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 6vw 80px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  max-width: 560px;
}

.hero h1 {
  font-size: 46px;
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  margin: 0 0 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.btn.light {
  background: transparent;
  color: #1b1b1b;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background: #1b1b1b;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
}

.card .img-wrap {
  background: #e6e0d5;
  border-radius: 12px;
  margin-bottom: 14px;
}

.inline-image {
  width: 100%;
  max-width: 420px;
  height: 260px;
  border-radius: 18px;
  object-fit: cover;
}

.image-wrap {
  background: #d9d3c7;
  border-radius: 18px;
  overflow: hidden;
}

.highlight {
  padding: 28px;
  border-radius: 20px;
  background: #f1e9de;
}

.insight-bg {
  position: relative;
  overflow: hidden;
}

.insight-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1493238792000-8113da705763?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.insight-bg > * {
  position: relative;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  flex: 1 1 230px;
  border: 1px solid #e2ded5;
}

.price-card strong {
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c2b7;
  font-size: 14px;
}

footer {
  padding: 40px 6vw 60px;
  background: #111;
  color: #f5f4ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.foot-col {
  flex: 1 1 200px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.banner-btn {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.banner-btn.light {
  background: #fff;
  color: #1b1b1b;
}

.subtle {
  font-size: 14px;
  color: #555;
}

.inline-cta {
  text-decoration: underline;
  cursor: pointer;
}

.page-hero {
  padding: 60px 6vw 30px;
  background: #f1e9de;
}

.page-hero img {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  object-fit: cover;
}

.centered {
  text-align: center;
}

.spacer {
  height: 18px;
}
