.start-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.start-split-text {
  background: var(--surface);
  padding: 56px var(--home-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.start-split-text h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.start-split-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.start-split-visual {
  background-image: url("/images/decorative/decor_5.webp");
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.start-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px var(--home-padding);
}

.start-content h2 {
  font-size: 1.45rem;
  margin: 40px 0 16px;
  color: var(--primary);
}

.start-content h2:first-of-type {
  margin-top: 0;
}

.start-content p {
  margin-bottom: 16px;
  line-height: 1.75;
}

.start-checklist {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.start-checklist li {
  padding: 14px 18px 14px 44px;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--soft-radius);
  position: relative;
  font-size: 15px;
}

.start-checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--accent);
  font-weight: 700;
}

.start-inline-img {
  margin: 32px 0;
  text-align: center;
}

.start-inline-img img {
  max-width: 500px;
  max-height: 320px;
  border-radius: var(--soft-radius);
  margin: 0 auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .start-split-hero {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .start-split-visual {
    min-height: 200px;
    max-height: 220px;
    order: -1;
    overflow: hidden;
  }

  .start-inline-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
