.site-shell {
  display: flex;
  min-height: 100vh;
  background: #f7f5f2;
  color: #1f2430;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  border-right: 1px solid #e5e0da;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #efe7df;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  text-decoration: none;
  color: #1f2430;
  font-weight: 600;
}

.nav-links a:focus {
  outline: 2px solid #4964f0;
  outline-offset: 2px;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #1f2430;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn.secondary {
  background: #efe7df;
  color: #1f2430;
}

.content {
  flex: 1;
  padding: 32px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  background: #fcfaf7;
  background-color: #1f2430;
  border-radius: 24px;
  padding: 36px;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 29, 40, 0.62);
}

.hero-content,
.hero-side {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 38px;
  margin: 0;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.hero-side {
  flex: 0.8;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-side img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d9d2c9;
}

.section {
  display: flex;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(22, 26, 35, 0.08);
}

.section.reverse {
  flex-direction: row-reverse;
}

.section img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #d9d2c9;
}

.section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-text h2,
.section-text h3 {
  margin: 0;
}

.layered {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.insight-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: 18px;
  color: #ffffff;
  background-color: #1f2430;
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.insight-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 19, 29, 0.62);
}

.insight-band > * {
  position: relative;
  z-index: 1;
}

.layered-card {
  flex: 1;
  background: #f0ede8;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.layered-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d9d2c9;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 200px;
  background: #ffffff;
  border: 1px solid #ebe4dc;
  border-radius: 14px;
  padding: 16px;
}

.form-section {
  display: flex;
  gap: 28px;
  background: #1f2430;
  color: #ffffff;
  padding: 28px;
  border-radius: 18px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.form-section label {
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
}

.form-aside {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  color: #4964f0;
  font-weight: 600;
  text-decoration: none;
}

.pricing-wrap {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ebe4dc;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #d9d2c9;
}

.footer {
  background: #11131a;
  color: #f5f1eb;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f5f1eb;
  text-decoration: none;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #4964f0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.plain-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(22, 26, 35, 0.06);
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #ebe4dc;
}

.legal-text {
  line-height: 1.7;
}

@media (max-width: 980px) {
  .site-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e0da;
  }

  .content {
    padding: 24px;
  }

  .hero,
  .section,
  .form-section {
    flex-direction: column;
  }

  .section img,
  .hero-side img {
    width: 100%;
  }
}
