* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f5f2ee;
  line-height: 1.6;
  padding-bottom: 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  padding: 24px 6%;
  background-color: #f5f2ee;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #ded7cf;
  padding-bottom: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 6% 60px;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block,
.split .media-block {
  flex: 1;
}

.media-frame {
  background-color: #d8d0c4;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background-color: #e7e0d8;
  color: #1a1a1a;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section {
  padding: 40px 6%;
}

.section.alt {
  background-color: #ffffff;
}

.section.dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.media {
  padding: 0;
  overflow: hidden;
}

.card.media .card-body {
  padding: 18px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #ded7cf;
  font-size: 0.8rem;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background-color: #ffffff;
  border-radius: 12px;
}

.pricing-item strong {
  font-size: 1.05rem;
}

.pricing-item span {
  font-weight: 600;
}

.layered {
  position: relative;
  overflow: hidden;
  background-color: #e6ded4;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.layered .layered-content {
  position: relative;
  z-index: 1;
}

.bg-insight::before {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-forecast::before {
  background-image: url("https://images.unsplash.com/photo-1472851294608-062f824d29cc?w=1400&q=80");
}

.section.dark.layered {
  background-color: #1a1a1a;
}

.form-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b8;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 6%;
  background-color: #f0ebe5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.9);
  padding: 10px 6%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 86px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  max-width: 280px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.small {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    padding: 12px;
  }
}
