* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2328;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: #f7f5f2;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  background: #1f2328;
  color: #f7f5f2;
  padding: 4px 10px;
  border-radius: 18px;
  font-size: 12px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 7% 60px;
  position: relative;
  background: #e9e1d7;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #d9d2c7;
  filter: grayscale(5%);
  opacity: 0.2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 22px;
  background: #1f2328;
  color: #f7f5f2;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: #f0b429;
  color: #1f2328;
}

.section {
  padding: 70px 7%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: #f7f5f2;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2328;
  color: #f7f5f2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 25px rgba(31, 35, 40, 0.08);
}

.card.dark {
  background: #2c3239;
  color: #f7f5f2;
}

.img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9d2c7;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  border-left: 3px solid #f0b429;
  padding-left: 16px;
}

.testimonial {
  background: #f7f0e5;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}

.pricing-reveal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-tag {
  font-size: 20px;
  font-weight: 600;
}

.hidden {
  display: none;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d6d0c8;
  font-size: 14px;
  background: #ffffff;
}

.form-wrap button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 18px;
  background: #1f2328;
  color: #f7f5f2;
  padding: 10px 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.footer {
  padding: 40px 7% 60px;
  background: #121417;
  color: #f7f5f2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  box-shadow: 0 12px 25px rgba(31, 35, 40, 0.2);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.small {
  font-size: 13px;
  opacity: 0.85;
}

.page-title {
  font-size: 34px;
  margin: 0;
}

.content-block {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
