* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1c1c;
  background: #f7f4f1;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.side-nav {
  width: 280px;
  background: #131313;
  color: #f7f4f1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9c2b9;
}

.brand strong {
  font-size: 22px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-links a {
  color: #f7f4f1;
  font-size: 15px;
}

.nav-links a:hover {
  color: #f2b278;
}

.nav-meta {
  margin-top: auto;
  font-size: 13px;
  color: #c9c2b9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #1d1b19;
  color: #f7f4f1;
}

.section-accent {
  background: #f2e7da;
}

.section-hero {
  min-height: 65vh;
  color: #f7f4f1;
  background: linear-gradient(120deg, rgba(15, 14, 13, 0.9), rgba(15, 14, 13, 0.35)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  justify-content: center;
  gap: 20px;
}

.hero-title {
  font-size: 42px;
  max-width: 620px;
}

.hero-subtitle {
  max-width: 560px;
  font-size: 17px;
  color: #e2dbd3;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #f2b278;
  color: #1a1714;
}

.btn-primary:hover {
  background: #f4c99a;
}

.btn-outline {
  border-color: #f2b278;
  color: #f2b278;
}

.btn-outline:hover {
  background: #f2b278;
  color: #1a1714;
}

.inline-link {
  font-weight: 600;
  color: #f2b278;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f0dac2;
  color: #1d1b19;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #2a2724;
  color: #f7f4f1;
  box-shadow: none;
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0dac2;
  font-size: 12px;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-left: 3px solid #f2b278;
  background: rgba(242, 178, 120, 0.12);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: #2b2118;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: #4d4339;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ded4c7;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.note {
  font-size: 13px;
  color: #6c5f54;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1d1b19;
  color: #f7f4f1;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.footer {
  padding: 28px 64px 48px;
  background: #131313;
  color: #c9c2b9;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: #f7f4f1;
  font-size: 13px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.media-strip img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-meta {
    width: 100%;
    margin-top: 12px;
  }

  .section {
    padding: 48px 24px;
  }

  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 34px;
  }

  .footer {
    padding: 24px;
  }
}
