* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1c1f;
  background-color: #f6f7fb;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.sidebar {
  flex: 0 0 260px;
  padding: 28px 22px;
  background-color: #111621;
  color: #f7f8fb;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #d2d7e4;
  background-color: #1c2232;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
}

.main {
  flex: 1;
  padding: 36px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(20, 32, 62, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-slim {
  padding: 22px 24px;
}

.hero {
  gap: 24px;
}

.hero-grid {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-visual {
  flex: 1 1 320px;
}

.hero-visual .image-frame {
  height: 320px;
}

.image-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background-color: #e0e4ee;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-tall {
  height: 260px;
}

.image-mid {
  height: 240px;
}

.two-col {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 260px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 210px;
  background-color: #f3f4f8;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-frame {
  height: 140px;
}

.price {
  font-weight: 600;
  color: #2c2f3a;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background-color: #1f4dd6;
  color: #ffffff;
  font-weight: 600;
}

.cta-link.secondary {
  background-color: #e4e8f7;
  color: #1b1c1f;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background-color: #fff5e6;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bg-insight {
  color: #ffffff;
  background-color: #24304a;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight .overlay {
  background-color: rgba(15, 23, 42, 0.75);
  border-radius: 16px;
  padding: 20px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd5e4;
  font-size: 15px;
  font-family: inherit;
}

button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background-color: #1f4dd6;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.muted {
  color: #5b6275;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background-color: #111621;
  color: #f7f8fb;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button.secondary {
  background-color: #2a334a;
}

.hidden {
  display: none;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #5b6275;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
  }

  .main {
    padding: 28px 22px 50px;
  }

  .sticky-cta {
    position: relative;
    top: 0;
    align-self: stretch;
  }
}
