* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1f24;
  --muted: #5c616a;
  --brand: #3f5bd8;
  --brand-dark: #2b3da4;
  --accent: #f6c45e;
  --surface: #f5f3f1;
  --surface-strong: #ebe7e1;
  --line: #d7d2ca;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 40px 0 10px;
  position: relative;
}

.hero-text {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 10px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
}

.hero-image {
  flex: 1 1 55%;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  background: #e8e2da;
  position: relative;
}

.hero-badge {
  position: absolute;
  right: -18px;
  bottom: 40px;
  background: var(--accent);
  color: #4c3c1c;
  padding: 18px 20px;
  border-radius: 18px;
  width: 220px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-contrast {
  background: var(--surface-strong);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 50%;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd5cd;
  position: relative;
}

.offset-block {
  display: flex;
  gap: 28px;
  align-items: stretch;
  position: relative;
}

.offset-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(18, 26, 40, 0.08);
  flex: 1 1 50%;
  margin-top: -36px;
}

.offset-image {
  flex: 1 1 50%;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: #dcd6cf;
  margin-left: 20px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.service-image {
  height: 160px;
  background: #dfd8d1;
}

.service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
}

.cta-inline {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: underline;
}

.metrics {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.metric {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  flex: 1 1 180px;
  border: 1px solid var(--line);
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-card {
  flex: 1 1 60%;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
}

.form-side {
  flex: 1 1 40%;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: var(--brand-dark);
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  width: min(360px, 90%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-btn.accept {
  background: var(--brand);
  color: #fff;
}

.cookie-btn.reject {
  background: #fff;
  border: 1px solid var(--line);
}

.notice {
  background: #fff8e5;
  border: 1px solid #f0d9a2;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.image-caption {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .offset-block,
  .form-wrap {
    flex-direction: column;
  }

  .hero-badge {
    position: static;
    width: auto;
  }

  .offset-card {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
