/* ============================================================
   CTA Block
   ============================================================ */
.cta-section {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.cta-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cta-block__bg { display: none; }

.cta-block__content .section__label {
  background: rgba(249,115,22,0.12);
  color: #f97316;
  border: 1px solid rgba(249,115,22,0.2);
}

.cta-block__title {
  font-family: var(--font-jp), var(--font-en);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
  margin: 1rem 0 0;
}

.cta-block__desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #666;
  margin-top: 1rem;
}

.cta-block__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 0;
  }

  .cta-block__actions {
    justify-content: center;
  }
}
