:root {
  --bg: #060913;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #e8ecf1;
  --muted: #a2acbc;
  --accent: #7dd3fc;
  --accent-strong: #6366f1;
  --success: #4ade80;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.25), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(125, 211, 252, 0.25), transparent 30%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 10px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, rgba(6, 9, 19, 0.92), rgba(6, 9, 19, 0.75));
  border-bottom: 1px solid var(--panel-strong);
}

.banner {
  margin: 0 -24px;
  padding: 12px 24px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(99, 102, 241, 0.18));
  border: 1px solid var(--panel-strong);
  border-radius: 0 0 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.banner strong {
  color: var(--accent);
}

.banner .details {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
}

.brand h1 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a.button {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent-strong), var(--accent));
  color: #0b1021;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.3);
}

.button.secondary {
  background: var(--panel);
  border-color: var(--panel-strong);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button.sbb {
  background: linear-gradient(120deg, #6366f1, #2c2e99);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
}

.button.sbb:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.3);
}

.button.lgfl {
  background: linear-gradient(120deg, #ef4444, #3a0505);
  border-color: #7f1d1d;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.25);
}

.button.lgfl:hover {
  transform: translateY(-1px);
  border-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(239, 68, 68, 0.3);
}

.button.rm-education {
  background: linear-gradient(120deg, #43df7c, #093017);
  border-color: #1f9e3d;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.25);
}

.button.rm-education:hover {
  transform: translateY(-1px);
  border-color: #4ade80;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(239, 68, 68, 0.3);
}

.button.exa {
  background: linear-gradient(120deg, #1e776b, #07312c);
  border-color: #15685d;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.25);
}

.button.exa:hover {
  transform: translateY(-1px);
  border-color: #15685d;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(239, 68, 68, 0.3);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  padding: 56px 0 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--panel);
  border: 1px solid var(--panel-strong);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 16px 0 12px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 18px;
}

  .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 10px 0 18px;
  }

  .certificate-select {
    appearance: none;
    padding: 12px 16px;
    min-width: 260px;
    border-radius: 12px;
    border: 1px solid var(--panel-strong);
    background: var(--panel);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='%23a2acbc'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
  }

  .certificate-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
  }

  .certificate-select option {
    background-color: #0b1021;
    color: var(--text);
  }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.pill {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--panel-strong);
  color: var(--muted);
  font-weight: 600;
}

.inline-note {
  margin: 8px 0 0;
  color: var(--muted);
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-strong);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.metric {
  background: var(--panel-strong);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
}

.section {
  padding: 28px 0;
}

.section h3 {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.section > p {
  margin: 0 0 20px;
  color: var(--muted);
}

.steps {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps li {
  margin-bottom: 8px;
}

.steps li:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature {
  border: 1px solid var(--panel-strong);
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.feature h4 {
  margin: 0 0 8px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--panel-strong);
  border-radius: 14px;
  padding: 14px;
}

.step .badge {
  margin: 0;
  padding: 8px 12px;
  font-size: 0.85rem;
  background: var(--panel-strong);
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}

.logo-cloud img {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 12px;
  height: 56px;
  object-fit: contain;
  border: 1px solid var(--panel-strong);
}

.cta {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(125, 211, 252, 0.15));
  border: 1px solid var(--panel-strong);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: center;
}

.cta h3 {
  margin: 0;
}

.cta p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  border-top: 1px solid var(--panel-strong);
  padding-top: 18px;
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta {
    grid-template-columns: 1fr;
  }
}
