* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1c1c1c;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 28px;
  background: #141414;
  color: #f5f1ea;
  width: 260px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.side-nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}

.side-cta {
  margin-top: auto;
  background: #f5f1ea;
  color: #141414;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.section.alt {
  background: #efe9e0;
}

.section.dark {
  background: #1e1e1e;
  color: #f5f1ea;
}

.section.dense {
  gap: 12px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split > * {
  flex: 1 1 240px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #7a6b5c;
}

.section.dark .eyebrow {
  color: #cbbda9;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1c1c1c;
  background: transparent;
}

.button.primary {
  background: #1c1c1c;
  color: #f7f4ef;
}

.button.light {
  background: #f5f1ea;
  color: #1c1c1c;
  border-color: transparent;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.08);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #f9f7f2;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card strong {
  font-size: 1.1rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  border: 1px solid rgba(28, 28, 28, 0.12);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: #7a6b5c;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(28, 28, 28, 0.2);
  font-size: 1rem;
  background: #fff;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1c1c1c;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #141414;
  color: #f5f1ea;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(28, 28, 28, 0.7);
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .side-cta {
    margin-top: 0;
  }

  .content {
    padding: 24px 20px 120px;
  }
}
