* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #101820;
  background-color: #f7f4ef;
}

a {
  color: #0b4b6b;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #0f1a24;
  color: #f7f4ef;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-name {
  font-size: 20px;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #e8ded2;
  background-color: #1f2c39;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: #f7f4ef;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d9d2c7;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-content {
  flex: 1;
  background-color: rgba(247, 244, 239, 0.9);
  padding: 28px;
  border-radius: 18px;
}

.hero h1 {
  margin-top: 0;
  font-size: 34px;
  line-height: 1.2;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
}

.hero-figure {
  width: 280px;
  min-width: 200px;
}

.image-frame {
  background-color: #e4ddd4;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(15, 26, 36, 0.08);
}

.card-image {
  background-color: #e7e0d7;
  border-radius: 14px;
  overflow: hidden;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 600;
  color: #0b4b6b;
}

.insight-band {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d2d8dd;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.insight-band .overlay {
  background-color: rgba(15, 26, 36, 0.82);
  color: #f7f4ef;
  padding: 24px;
  border-radius: 18px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 180px;
  background-color: #f7f4ef;
  border-radius: 16px;
  padding: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
}

.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0b4b6b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.form-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 26px rgba(15, 26, 36, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c0b5;
  font-size: 14px;
}

.form-status {
  font-size: 13px;
  color: #0b4b6b;
}

.btn {
  background-color: #0b4b6b;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background-color: #ffffff;
  color: #0b4b6b;
  border: 1px solid #0b4b6b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  padding: 28px 40px 40px;
  background-color: #0f1a24;
  color: #e8ded2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e8ded2;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 24px;
  background-color: #0f1a24;
  color: #f7f4ef;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 10px 22px rgba(15, 26, 36, 0.28);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  color: #101820;
  border-radius: 16px;
  padding: 16px;
  width: 300px;
  box-shadow: 0 12px 24px rgba(15, 26, 36, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 26, 36, 0.08);
}

.page-hero .image-frame {
  max-width: 280px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
    width: 100%;
  }

  .main {
    padding: 28px 24px 80px;
  }

  .hero {
    flex-direction: column;
  }

  .hero-figure {
    width: 100%;
  }

  .split {
    flex-direction: column;
  }

  .page-hero {
    flex-direction: column;
  }
}
