* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1f;
  background: #f6f4f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: #111218;
  color: #f1f0ee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #c6c2bc;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  padding: 8px 10px;
  border-radius: 10px;
  background: #1b1c24;
  display: block;
}

.nav-meta {
  font-size: 13px;
  color: #c6c2bc;
  line-height: 1.5;
}

main {
  flex: 1;
  padding: 0 0 80px;
}

.section {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.section.compact {
  padding: 36px 56px;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #151820;
  color: #f6f4f2;
}

.section.layered::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero {
  min-height: 420px;
  color: #f6f4f2;
  justify-content: flex-end;
}

.hero-content {
  max-width: 520px;
  background: rgba(17, 18, 24, 0.68);
  padding: 28px 26px;
  border-radius: 18px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 34px;
}

.hero p {
  margin: 0 0 18px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f3b23a;
  color: #1b1b1f;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
}

.image-frame {
  background: #d9d5cf;
  border-radius: 18px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card.dark {
  background: #1b1c24;
  color: #f6f4f2;
}

.price {
  font-size: 18px;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #f0ebe4;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c4bd;
  font-size: 14px;
  font-family: inherit;
}

.cta-inline {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 22px;
  background: #1b1c24;
  color: #f6f4f2;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta .btn {
  background: #9be6c7;
}

.footer {
  background: #111218;
  color: #f6f4f2;
  padding: 30px 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.notice {
  font-size: 12px;
  color: #c6c2bc;
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  color: #1b1b1f;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  color: #f6f4f2;
}

.bg-hero {
  background-color: #1f232c;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-color: #20242d;
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-about {
  background-color: #20252e;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-services {
  background-color: #1d2028;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-contact {
  background-color: #20232a;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-legal {
  background-color: #1e2128;
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(27, 27, 31, 0.14);
  padding-bottom: 10px;
}

.table-row strong {
  font-weight: 600;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .section {
    padding: 36px 24px;
  }

  .footer {
    padding: 24px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    justify-content: space-between;
  }
}
