*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #f5f3ef;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background: #efe8dc;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 13px;
  line-height: 1.4;
  background: #fff7e6;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  border: none;
  background: #1a1a1a;
  color: #f6f1e7;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 18px;
  cursor: pointer;
}

.btn-light {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #faf9f6;
}

.section {
  padding: 48px 64px;
}

.section-muted {
  background: #f0ede6;
}

.section-dark {
  background: #202020;
  color: #fef6e5;
}

.section-title {
  font-size: 30px;
  margin: 0 0 16px;
}

.section-text {
  font-size: 16px;
  line-height: 1.6;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 380px;
  background: #d9d0c4;
  border-radius: 24px;
  overflow: hidden;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.media-frame {
  flex: 1 1 260px;
  background: #d6d0c8;
  border-radius: 20px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e4e0d6;
}

.card-image {
  background: #e1dad0;
  border-radius: 16px;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  background: #f1e7d7;
  border-radius: 999px;
  font-size: 12px;
}

.pricing {
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 360px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e4e0d6;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bb;
  background: #fffdf8;
}

input:disabled,
select:disabled,
textarea:disabled {
  background: #f1ede6;
}

.form-note {
  font-size: 13px;
}

.footer {
  padding: 28px 64px 48px;
  background: #e9e3d9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1a1a1a;
  color: #fef6e5;
  padding: 12px 16px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background: #fef6e5;
  color: #1a1a1a;
  border: none;
  padding: 6px 10px;
  border-radius: 12px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.hero-badge {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ded6c8;
}

.service-row span {
  flex: 1 1 220px;
}

.spacer {
  height: 12px;
}

.hero-compact {
  padding-bottom: 20px;
}

.muted {
  color: #4f4a42;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.page-hero .media-frame {
  flex: 1 1 320px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e4e0d6;
}

.table-row div {
  flex: 1 1 220px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
