* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
  color: #1f2430;
  background: #f6f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #f6f4f0;
  border-bottom: 1px solid #e2ded7;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f2430;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #fff1d8;
  border-radius: 16px;
  border: 1px solid #f0d6a3;
}

.main {
  flex: 1;
}

.split {
  display: flex;
  gap: 40px;
  padding: 70px 6%;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-tight {
  padding: 50px 6%;
}

.text-block {
  flex: 1;
  min-width: 280px;
}

.text-block h1,
.text-block h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.text-block p {
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.6;
}

.image-frame {
  flex: 1;
  min-width: 280px;
  border-radius: 24px;
  background: #d7d3cc;
  overflow: hidden;
  height: 360px;
}

.image-frame.tall {
  height: 440px;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(31, 36, 48, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2430;
  color: #fff;
  font-weight: 600;
  border: 2px solid #1f2430;
}

.btn.secondary {
  background: transparent;
  color: #1f2430;
}

.inline-link {
  border-bottom: 1px solid #1f2430;
  padding-bottom: 2px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #f1ede6;
  align-items: center;
}

.card img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  background: #d7d3cc;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d8d2c9;
}

.pricing-item span {
  font-weight: 600;
}

.split-section {
  background: #fdfbf7;
}

.split-section.alt {
  background: #ebe7e1;
}

.bg-image-section {
  background-color: #e2ded7;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-section .text-block,
.bg-image-section .image-frame {
  backdrop-filter: blur(2px);
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(31, 36, 48, 0.12);
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bd;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1f2430;
  color: #fff;
  padding: 16px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sticky-cta .btn {
  background: #fff;
  color: #1f2430;
  border-color: #fff;
}

.site-footer {
  background: #1f2430;
  color: #f6f4f0;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(31, 36, 48, 0.18);
  max-width: 320px;
  z-index: 999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid #1f2430;
  background: #1f2430;
  color: #fff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1f2430;
}

.simple-page {
  padding: 70px 10%;
  max-width: 920px;
  margin: 0 auto;
}

.simple-page h1 {
  margin-top: 0;
}

.reference-list {
  padding-left: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .image-frame,
  .image-frame.tall {
    width: 100%;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
