.license-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 220px;
  border-bottom: 1px solid var(--border);
}

.license-hero-text {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  align-items: center;
}

.license-hero-text h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.license-hero-stat {
  background: var(--primary);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-left: 2px solid var(--accent);
}

.license-hero-stat strong {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.license-hero-stat span {
  font-size: 13px;
  margin-top: 8px;
  opacity: 0.9;
}

.license-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.license-col h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.license-col p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.license-col ul {
  margin: 12px 0 16px 20px;
  color: var(--muted);
  font-size: 15px;
}

.license-visual {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
  max-width: 100%;
  overflow: hidden;
}

.license-visual img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border);
}

.license-callout {
  grid-column: 1 / -1;
  padding: 28px 32px;
  background: rgba(56, 189, 248, 0.06);
  border-left: 4px solid var(--accent);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .license-hero,
  .license-body,
  .license-visual {
    grid-template-columns: 1fr;
  }

  .license-hero-stat {
    border-left: none;
    border-top: 2px solid var(--accent);
  }
}

@media (max-width: 500px) {
  .license-visual img {
    max-height: 220px;
  }
}
