* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1d1f;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-frame {
  background-color: #d5d9d4;
  border-radius: 18px;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 28px 80px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 600;
}

.ad-disclosure {
  max-width: 420px;
  font-size: 14px;
  color: #5a5f66;
  text-align: right;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  font-size: 15px;
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:focus {
  border-bottom-color: #1b1d1f;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}

.hero-text {
  flex: 1 1 360px;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 18px;
  margin: 0 0 24px;
  max-width: 520px;
}

.hero-card {
  flex: 1 1 360px;
  padding: 24px;
  background: #ffffff;
  border-radius: 24px;
  position: relative;
  top: 18px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}

.hero-card img {
  border-radius: 18px;
  background-color: #d6d2cc;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b1d1f;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: #1b1d1f;
  border: 1px solid #1b1d1f;
}

.section {
  margin: 56px 0;
}

.section h2 {
  font-size: 32px;
  margin: 0 0 16px;
}

.split-offset {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-block {
  flex: 1 1 320px;
  padding: 26px;
  border-radius: 22px;
  background: #ffffff;
  position: relative;
}

.offset-block.lifted {
  top: -18px;
}

.offset-image {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #c6d0d4;
}

.tall-card {
  padding: 28px;
  border-radius: 26px;
  background: #e7eceb;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.service-card img {
  border-radius: 16px;
  margin-bottom: 14px;
  background-color: #d2d8d1;
}

.price {
  font-weight: 700;
  margin-top: 10px;
  font-size: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.timeline-item .step {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b6f74;
  min-width: 110px;
}

.inline-image {
  max-width: 440px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #cfd7d2;
}

.audit-form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.audit-form .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c6c9ce;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid #d4d1cc;
  font-size: 14px;
  color: #5b6066;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  max-width: 360px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.banner-hidden {
  display: none;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
}

.offset-background {
  padding: 34px;
  border-radius: 26px;
  background: #e1e7e6;
  position: relative;
}

.offset-background::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(27, 29, 31, 0.2);
  border-radius: 22px;
}

.background-panel {
  padding: 28px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.4);
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.bg-audit {
  background-image: url("https://images.unsplash.com/photo-1615020322213-4046df36c056?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw0fHwlM0MlM0ZwaHAlMjBlY2hvJTIwJTI0ZGVzY3JpcHRpb24lM0IlMjAlM0YlM0V8ZW58MHwwfHx8MTc4MjIzMzgwN3ww&ixlib=rb-4.1.0&q=80&w=1080");
}

.bg-home {
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1400&q=80");
}

.bg-blueprint {
  background-image: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6?w=1400&q=80");
}

.text-muted {
  color: #6a6e73;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8eceb;
  font-size: 13px;
  margin-bottom: 12px;
}

@media (max-width: 820px) {
  .sticky-cta {
    left: 24px;
    right: auto;
  }
}
