* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1f23;
  background: #f7f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: #f7f7f4;
  border-bottom: 1px solid #dedad4;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: #ede9e2;
}

.nav-links a:hover,
.nav-links a:focus {
  background: #d7d2ca;
}

.ad-label {
  font-size: 12px;
  color: #5f5f5f;
  padding: 6px 10px;
  border-radius: 14px;
  background: #f0ede7;
}

main {
  display: flex;
  flex-direction: column;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  min-width: 280px;
}

.split .media {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  background: #e1ded7;
  padding: 10px;
  border-radius: 22px;
}

.split .media img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  object-fit: cover;
}

.hero {
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 22, 27, 0.6);
}

.hero .hero-inner {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero .hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero .hero-aside {
  flex: 0.9;
  background: rgba(255, 255, 255, 0.08);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f1b24b;
  color: #111;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid #f1b24b;
  color: #f1b24b;
}

.button.dark {
  background: #222;
  color: #fff;
}

.button:hover,
.button:focus {
  filter: brightness(0.95);
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
  background: #e1ded7;
}

.tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6d6b66;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.timeline-step {
  font-weight: 700;
  font-size: 18px;
  color: #f1b24b;
}

.inline-link {
  color: #d37800;
  text-decoration: underline;
}

.form-wrapper {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc7bc;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

.metric strong {
  display: block;
  font-size: 26px;
}

.notice {
  background: #222;
  color: #fff;
  padding: 24px;
  border-radius: 20px;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 20;
  display: flex;
}

.sticky-cta button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1c7c7a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  filter: brightness(0.95);
}

footer {
  padding: 50px 6% 80px;
  background: #101416;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: #1e2427;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1c7c7a;
  color: #fff;
}

.cookie-reject {
  background: #dad3c8;
}

.legal-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-hero {
  background-image: url("https://images.pexels.com/photos/4450043/pexels-photo-4450043.jpeg");
}

.bg-precision {
  background-image: url("https://images.pexels.com/photos/18760232/pexels-photo-18760232.jpeg");
}

.bg-trust {
  background-image: url("https://images.pexels.com/photos/4450043/pexels-photo-4450043.jpeg");
}

.bg-contact {
  background-image: url("https://images.pexels.com/photos/12973997/pexels-photo-12973997.jpeg");
}

.bg-legal {
  background-image: url("https://images.pexels.com/photos/18757697/pexels-photo-18757697.jpeg");
}

.bg-subtle {
  background-image: url("https://images.pexels.com/photos/264507/pexels-photo-264507.jpeg");
}

.section.bg {
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.section.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.6);
}

.section.bg > * {
  position: relative;
}

@media (max-width: 900px) {
  .split,
  .hero .hero-inner {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
