* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f22;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #2f3f6b;
  text-decoration: none;
}

header {
  padding: 28px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-disclosure {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0e7dc;
  color: #5b4633;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #d8d6d1;
  transform: translateY(18px);
}

.section {
  padding: 60px 6vw;
}

.section-alt {
  background: #ffffff;
}

.offset-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border-radius: 20px;
  background: #f0efe9;
  max-width: 520px;
  box-shadow: -10px 18px 35px rgba(0, 0, 0, 0.06);
}

.split-asym {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.split-asym.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #d9d7d2;
}

.text-block {
  flex: 1 1 320px;
}

.floating-note {
  margin-left: auto;
  padding: 18px 24px;
  background: #1f1f22;
  color: #fff;
  border-radius: 16px;
  max-width: 380px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 170px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 600;
  color: #2f3f6b;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f3f6b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-ghost {
  background: transparent;
  border: 1px solid #2f3f6b;
  color: #2f3f6b;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.form-section {
  background: #ffffff;
  padding: 34px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c7c4bd;
  font-size: 0.95rem;
  font-family: inherit;
}

.note-panel {
  background: #e8e1d8;
  padding: 22px;
  border-radius: 18px;
}

.testimonial {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 240px;
}

.testimonials-wrap {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

footer {
  padding: 40px 6vw 60px;
  background: #1f1f22;
  color: #f4f1eb;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f4f1eb;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 50px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero h1 {
  margin: 0;
}

.simple-section {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero-image {
    transform: none;
  }

  .floating-note {
    margin-left: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
