* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f3ef;
}

a {
  color: #1c1c1c;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 6vw 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.nav-area nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background-color: #efe3d4;
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 6vw 80px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #6a5a44;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
  line-height: 1.6;
}

.panel {
  padding: 28px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.panel.soft {
  background-color: #efe3d4;
  box-shadow: none;
}

.bg-insights {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 32px;
}

.bg-insights .panel {
  background-color: rgba(255, 255, 255, 0.92);
}

.image-frame {
  background-color: #e2d7c8;
  border-radius: 20px;
  overflow: hidden;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e4dccf;
  padding-bottom: 12px;
}

.price-item strong {
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  cursor: pointer;
}

.btn.primary {
  background-color: #1c1c1c;
  color: #ffffff;
}

.btn.light {
  background-color: #efe3d4;
  color: #1c1c1c;
}

.form-card label {
  font-size: 13px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d4c8b7;
  font-size: 14px;
  width: 100%;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-hint {
  font-size: 12px;
  color: #6f5e45;
}

.service-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #efe3d4;
  font-size: 12px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.icon {
  width: 34px;
  height: 34px;
  background-color: #1c1c1c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

footer {
  padding: 40px 6vw 60px;
  background-color: #1c1c1c;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-meta {
  font-size: 12px;
  color: #d3c7b6;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 6vw;
  background-color: #ffffff;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-stack .panel {
  padding: 18px 20px;
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-area {
    align-items: flex-start;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  h1 {
    font-size: 34px;
  }
}
