* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: #0e1820;
  background: #f4f2ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav-float {
  position: relative;
  margin: 24px auto 0;
  padding: 16px 22px;
  max-width: 1080px;
  background: #fff7f0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(14, 24, 32, 0.08);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.24em;
}

.hero {
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content {
  background: #fefdfb;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 24px 40px rgba(14, 24, 32, 0.09);
  position: relative;
}

.hero-content::after {
  content: "";
  position: absolute;
  top: -14px;
  right: 12px;
  width: 80px;
  height: 80px;
  background: #e6d7c9;
  border-radius: 24px;
  z-index: -1;
}

.hero-title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 18px;
  margin: 0 0 24px;
  color: #42505a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a3c52;
  color: #fff;
}

.btn.secondary {
  background: #f0e2d5;
  color: #1a3c52;
}

.section {
  padding: 64px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(14, 24, 32, 0.08);
  position: relative;
}

.offset-card.lift {
  transform: translateY(-18px);
}

.offset-card.tilt {
  transform: rotate(-1.2deg);
}

.highlight {
  background: #0e1820;
  color: #fff;
  border-radius: 24px;
  padding: 28px;
}

.tag {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #7a5f4c;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #efe4da;
}

.service-card strong {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #1a3c52;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-bar {
  background: #fff3e7;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 24px 40px rgba(14, 24, 32, 0.09);
}

.form-panel label {
  font-size: 14px;
  margin-top: 16px;
  display: block;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8c7b9;
  margin-top: 6px;
  font-family: inherit;
}

.form-panel button {
  margin-top: 20px;
  width: 100%;
}

.footer {
  padding: 40px 20px 60px;
  background: #0e1820;
  color: #f8f4f0;
}

.footer a {
  color: #f8f4f0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9;
}

.sticky-cta a {
  background: #e4572e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(228, 87, 46, 0.3);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(14, 24, 32, 0.12);
  display: none;
  z-index: 10;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.muted {
  color: #5c6b73;
}

.side-note {
  background: #dfe7ec;
  padding: 18px;
  border-radius: 18px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
    align-self: flex-end;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .image-strip {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
