* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #f0ebe4;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid #e1d9cf;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #e7ddcf;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.sidebar-footer {
  margin-top: auto;
  font-size: 12px;
  color: #5a554e;
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.section.alt {
  background: #f9f5f0;
}

.section.dark {
  background: #2b2a28;
  color: #f9f5f0;
}

.hero {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 26, 24, 0.55);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 42px;
  color: #f7f2eb;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-frame {
  flex: 1 1 240px;
  background: #e6dfd6;
  border-radius: 18px;
  overflow: hidden;
  padding: 8px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1d1d1f;
  color: #f7f2eb;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.light {
  background: #f7f2eb;
  color: #1d1d1f;
}

.btn.outline {
  background: transparent;
  border: 1px solid #1d1d1f;
  color: #1d1d1f;
}

.text-link {
  color: #c4642a;
  font-weight: 600;
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 12px;
  background: #f0ebe4;
  border-radius: 999px;
  font-size: 13px;
}

.trust-layer {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  color: #f7f2eb;
}

.trust-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 26, 24, 0.6);
}

.trust-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 14px;
  font-size: 14px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.service-card .image-frame {
  padding: 6px;
}

.service-card img {
  height: 140px;
}

.service-price {
  font-weight: 700;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: #f6f1ea;
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1d1d1f;
  color: #f7f2eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7cfc3;
  font-size: 14px;
}

.form-note {
  font-size: 13px;
  color: #4c4741;
}

.inline-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: #c4642a;
  color: #f7f2eb;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
}

.footer {
  font-size: 13px;
  color: #5a554e;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1d1d1f;
  color: #f7f2eb;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.hero-webinar {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.trust-background {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
}

.small-banner {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

@media (max-width: 920px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .content {
    padding: 24px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
