* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.85rem;
  color: #4f4f4f;
  border: 1px solid #d9d4ca;
  padding: 6px 10px;
  border-radius: 18px;
  background: #f3efe7;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #111;
}

.hero {
  padding: 32px 0 60px;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 420px;
}

.split-media {
  background: #e7e3da;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.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: 10px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: #111;
}

.btn:hover {
  opacity: 0.86;
}

.inline-link {
  color: #1a4d7a;
  border-bottom: 1px solid #1a4d7a;
}

.inline-link:hover {
  opacity: 0.8;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e2dccf;
}

.card-image {
  background: #eae6dd;
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
  margin-bottom: 12px;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.section-note {
  color: #5a5a5a;
  font-size: 0.95rem;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e2dccf;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e2dccf;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc8ba;
  font-size: 1rem;
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 20;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  border: 0;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.sticky-cta:hover {
  opacity: 0.88;
}

.footer {
  padding: 36px 0 60px;
  border-top: 1px solid #e2dccf;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid #e2dccf;
  border-radius: 14px;
  padding: 16px 18px;
  display: none;
  z-index: 30;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.quiet {
  color: #5a5a5a;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: #efeae0;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 12px;
  }
}
