* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #17212b;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.img-fit {
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: #f6f4f1;
  border-bottom: 1px solid #e1d9d0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: #17212b;
  text-decoration: none;
}

.ad-label {
  font-size: 12px;
  color: #5b6770;
  padding: 6px 10px;
  border: 1px solid #cfd4d9;
  background-color: #f1ebe5;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 8%;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: #52606d;
}

.headline {
  font-size: 36px;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.subhead {
  font-size: 18px;
  color: #3a4650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  background-color: #17212b;
  color: #f6f4f1;
  text-decoration: none;
  border: none;
  font-size: 14px;
}

.btn.secondary {
  background-color: #f1ebe5;
  color: #17212b;
  border: 1px solid #cfd4d9;
}

.panel {
  background-color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.08);
}

.panel.image-card {
  background-color: #e6e0d9;
  padding: 0;
  overflow: hidden;
}

.panel.image-card img {
  width: 100%;
  height: 100%;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 200px;
  background-color: #f1ebe5;
  padding: 18px;
  border-radius: 18px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(23, 33, 43, 0.08);
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
}

.highlight {
  background-color: #17212b;
  color: #f6f4f1;
  border-radius: 28px;
  padding: 26px;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(23, 33, 43, 0.08);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input,
.form select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #cfd4d9;
  font-size: 14px;
}

.footer {
  padding: 48px 8%;
  background-color: #f1ebe5;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 14px;
}

.footer .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #17212b;
  text-decoration: none;
}

.legal-note {
  max-width: 420px;
  color: #3a4650;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #17212b;
  color: #f6f4f1;
  padding: 18px 20px;
  border-radius: 18px;
  display: none;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 18px;
  padding: 10px 16px;
  font-size: 13px;
}

.cookie-actions .accept {
  background-color: #f6f4f1;
  color: #17212b;
}

.cookie-actions .reject {
  background-color: #5b6770;
  color: #f6f4f1;
}

.image-block {
  background-color: #e6e0d9;
  border-radius: 24px;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
}

.content-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(23, 33, 43, 0.08);
}

.dual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.note {
  font-size: 13px;
  color: #52606d;
}

@media (max-width: 820px) {
  .headline {
    font-size: 28px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
