.boost-hero {
  padding: 56px 16px;
  background:
    linear-gradient(110deg, rgba(34, 197, 94, 0.2), transparent 50%),
    var(--secondary);
  border-bottom: 1px solid var(--border);
}

.boost-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.boost-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.boost-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 16px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.boost-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px;
}

.boost-panel h2 {
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.boost-panel p {
  margin-bottom: 12px;
  color: rgba(250, 250, 250, 0.88);
}

.boost-quote {
  grid-column: 1 / -1;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 28px;
  background: var(--primary);
  color: var(--bg);
  line-height: 1.3;
}

.boost-visual {
  overflow: hidden;
  max-width: 100%;
}

.boost-visual img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.boost-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  grid-column: 1 / -1;
}

.boost-mosaic div {
  min-height: 140px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

@media (max-width: 760px) {
  .boost-grid,
  .boost-mosaic {
    grid-template-columns: 1fr;
  }
  .boost-visual,
  .boost-visual img,
  .boost-mosaic {
    max-width: 100%;
  }
  .boost-visual img {
    max-height: 220px;
  }
}
