* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f5f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #f7f5f1;
  padding: 24px 5vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #1e1e1e;
  color: #f7f5f1;
  padding: 6px 10px;
  border-radius: 20px;
}

.ad-note {
  margin-top: 10px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 120px;
}

.band {
  padding: 64px 5vw;
}

.hero {
  background-image: linear-gradient(rgba(15, 15, 15, 0.55), rgba(15, 15, 15, 0.25)),
    url("https://images.unsplash.com/photo-1514986888952-8cd320577b68?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f5f1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f7f5f1;
  color: #1e1e1e;
  padding: 12px 20px;
  border-radius: 28px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.media-card {
  background-color: #ddd5c8;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.contrast {
  color: #f7f5f1;
  background-image: linear-gradient(rgba(20, 20, 20, 0.65), rgba(20, 20, 20, 0.2)),
    url("https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1e1e1e;
  color: #f7f5f1;
  font-size: 12px;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  min-width: 220px;
}

.card-image {
  background-color: #d8d0c3;
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
}

.cta-link {
  color: #1e1e1e;
  font-weight: 600;
  text-decoration: underline;
}

.quote {
  background: #1e1e1e;
  color: #f7f5f1;
  padding: 18px;
  border-radius: 18px;
}

.quote + .quote {
  margin-top: 14px;
}

.pricing {
  background: #ffffff;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
}

.service-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.service-option {
  flex: 1 1 220px;
  border: 1px solid #e0d8cc;
  border-radius: 18px;
  padding: 14px;
  background: #f9f6f2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-option input {
  accent-color: #1e1e1e;
}

.form-fields {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
  font-size: 14px;
}

.form-fields input,
.form-fields select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d1c5;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  color: #f7f5f1;
  padding: 12px 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1e1e1e;
  color: #f7f5f1;
  padding: 12px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta button {
  background: #f7f5f1;
  color: #1e1e1e;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

footer {
  background: #1e1e1e;
  color: #f7f5f1;
  padding: 50px 5vw 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d9d1c5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1e1e1e;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 11;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 16px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1e1e1e;
  color: #f7f5f1;
}

.cookie-reject {
  background: #e6dfd3;
  color: #1e1e1e;
}

.page-hero {
  background: #ece7df;
  padding: 48px 5vw 32px;
}

.page-hero h1 {
  font-size: 32px;
}

.page-section {
  padding: 32px 5vw 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-item {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item .card-image {
  height: 160px;
}

.text-muted {
  color: #6b6258;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}
