/* Start custom CSS */.nll-page {
  --nll-surface: #ffffff;
  --nll-surface-2: #fff9ea;
  --nll-border: rgba(34, 46, 71, 0.12);
  --nll-text: #1f2f4a;
  --nll-muted: #5d6b82;
  --nll-accent: #0e7c86;
  --nll-accent-dark: #0a5d65;
  --nll-accent-soft: #d9f0ef;
  --nll-shadow: 0 10px 30px rgba(31, 47, 74, 0.08);
  --nll-radius: 18px;
}

.nll-titlebar {
  background: #ffffff;
  border: 1px solid var(--nll-border);
  border-radius: var(--nll-radius);
  padding: 24px 28px 20px;
  box-shadow: var(--nll-shadow);
  margin-bottom: 10px;
  text-align: left;
}

.nll-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--nll-accent-soft);
  color: var(--nll-accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.nll-titlebar h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--nll-text);
  line-height: 1.15;
  margin: 0 0 10px;
}

.nll-titlebar p {
  color: var(--nll-muted);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

.nll-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 16px 0 24px;
}

.nll-hero-text p {
  font-size: 17px;
  color: var(--nll-muted);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 0 24px;
}

.nll-hero-media img {
  border-radius: 24px;
  box-shadow: var(--nll-shadow);
  width: 100%;
  height: auto;
  display: block;
}

.nll-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.nll-btn:hover {
  transform: translateY(-2px);
}

.nll-btn-primary {
  background: var(--nll-accent);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(14, 124, 134, 0.25);
}

.nll-btn-primary:hover {
  background: var(--nll-accent-dark);
  color: #ffffff;
}

.nll-btn-secondary {
  background: transparent;
  color: var(--nll-accent-dark);
  border: 2px solid rgba(14, 124, 134, 0.35);
}

.nll-btn-secondary:hover {
  background: rgba(14, 124, 134, 0.06);
  color: var(--nll-accent-dark);
}

.nll-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 8px 0 24px;
}

.nll-summary-item {
  background: #ffffff;
  border: 1px solid var(--nll-border);
  border-radius: var(--nll-radius);
  box-shadow: var(--nll-shadow);
  padding: 18px 20px;
}

.nll-summary-item .label {
  display: block;
  font-size: 12px;
  color: var(--nll-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 6px;
}

.nll-summary-item .value {
  color: var(--nll-text);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.nll-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(14, 124, 134, 0.1);
  color: var(--nll-accent-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.nll-section-intro h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--nll-text);
  margin: 0 0 12px;
  line-height: 1.2;
}

.nll-section-intro p {
  font-size: 17px;
  color: var(--nll-muted);
  line-height: 1.7;
  max-width: 68ch;
}

.nll-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.nll-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.nll-card {
  background: #ffffff;
  border: 1px solid var(--nll-border);
  border-radius: var(--nll-radius);
  box-shadow: var(--nll-shadow);
  padding: 26px;
}

.nll-card h3 {
  font-size: 1.3rem;
  color: var(--nll-text);
  line-height: 1.2;
  margin: 10px 0 12px;
}

.nll-card p {
  font-size: 16px;
  color: var(--nll-muted);
  line-height: 1.7;
  margin: 0 0 10px;
}

.nll-note {
  background: var(--nll-surface-2);
  border: 1px solid var(--nll-border);
  border-radius: var(--nll-radius);
  box-shadow: var(--nll-shadow);
  padding: 22px 24px;
}

.nll-note strong {
  color: var(--nll-text);
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
}

.nll-note span,
.nll-note p {
  color: var(--nll-muted);
  font-size: 15px;
  line-height: 1.65;
}

.nll-cta-block h2 {
  font-size: 1.5rem;
  color: var(--nll-text);
  margin: 0 0 10px;
}

.nll-cta-block p {
  font-size: 16px;
  color: var(--nll-muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.nll-divider {
  height: 1px;
  background: var(--nll-border);
  margin: 16px 0;
}

@media (max-width: 1024px) {
  .nll-hero,
  .nll-summary,
  .nll-grid-2,
  .nll-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .nll-titlebar { padding: 18px 16px; }
  .nll-titlebar h1 { font-size: 1.6rem; }
  .nll-card { padding: 18px; }
  .nll-btn { width: 100%; text-align: center; }
}/* End custom CSS */