:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: rgba(239, 246, 255, 0.95);
  --text: #0f172a;
  --muted: #536178;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #0ea5e9;
  --border: rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 22%),
    radial-gradient(circle at 80% 15%, rgba(37, 99, 235, 0.03), transparent 18%);
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: 0.26;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  padding-left: 0;
  padding-right: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-left: -0.75rem;
  margin-right: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-actions .button-secondary {
  background: rgba(241, 245, 249, 0.95);
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.brand img {
  display: block;
  max-height: 72px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 1.4rem;
  flex-wrap: nowrap;
  min-width: 0;
  position: relative;
}

.site-header .header-inner {
  padding: 0.75rem 1rem;
}

.site-header .brand {
  order: 1;
  margin-right: 1rem;
}

.site-header .site-nav {
  order: 2;
  flex: 1 1 auto;
  justify-content: center;
}

.site-header .header-actions {
  order: 3;
  margin-left: auto;
  flex: 0 0 auto;
}

.site-nav a,
.drop-toggle {
  color: var(--text);
  font-weight: 700;
  background: transparent;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.95rem;
  font: inherit;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.drop-toggle:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.site-nav a.active {
  color: var(--accent);
}



.nav-dropdown {
  position: relative;
}

.drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.chevron {
  font-size: 0.85rem;
  line-height: 1;
}

.dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.75rem);
  display: none;
  background: #f8fbff;
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
  padding: 1rem;
  min-width: 520px;
  z-index: 30;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  display: grid;
}

.dropdown-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.dropdown-col {
  display: grid;
  gap: 0.6rem;
}

.dropdown-panel a {
  color: #0f172a;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-panel a:hover {
  background: rgba(37, 99, 235, 0.16);
  color: var(--primary);
}

.mobile-menu-button {
  display: none;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--primary);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-button:hover {
  background: rgba(37, 99, 235, 0.18);
  transform: translateY(-1px);
}

.site-nav.open {
  display: flex;
  animation: slideDown 220ms ease-out;
}

.mobile-menu-actions {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(241, 245, 249, 0.95);
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hero {
  padding: 4rem 0 3rem;
  /* Mengurangi opasitas gradient agar gambar di bawahnya lebih kontras dan jelas */
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(235, 244, 255, 0.6)), url('hero-bg.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Mengurangi efek radial gradient agar tidak membuat area tertentu terlalu putih/silau */
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 30%), 
              radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.1), transparent 20%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  margin: 0 0 1rem;
}

.hero p {
  max-width: 44rem;
  color: #000000;
  font-size: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-login {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.hero-card li {
  background: var(--surface-alt);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  color: var(--text);
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: rgba(235, 244, 255, 0.85);
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header.section-header-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.skk-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.skk-card {
  display: grid;
  place-items: start;
  text-align: left;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  color: #ffffff !important;
}

.skk-card .feature-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-size: 1.3rem;
}

.skk-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #ffffff !important;
  font-weight: 700;
}

.skk-card p {
  margin: 0;
  color: #f8fafc !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-grid {
  align-items: center;
}

.about-image img {
  display: block;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.about-text {
  display: grid;
  gap: 1.15rem;
}

.about-box {
  background: rgba(239, 246, 255, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 20px;
  padding: 1.25rem;
}

.about-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.card,
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.card-link {
  display: grid;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 213, 255, 0.45);
  box-shadow: 0 24px 40px rgba(2, 8, 23, 0.32);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-dark);
  font-size: 1.75rem;
  text-decoration: none;
  margin: 0 auto;
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.login-section {
  padding: 4rem 0 4rem;
}

.login-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.login-card h1 {
  margin-top: 0;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
}

.login-card p {
  color: var(--muted);
}

.login-card form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.login-card label {
  font-weight: 600;
  color: var(--text);
}

.login-card input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: var(--text);
}

.login-card input::placeholder {
  color: rgba(15, 23, 42, 0.5);
}

.login-card .login-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.card h3,
.feature-card h3 {
  margin-top: 0;
}

.card p,
.feature-card p {
  color: var(--muted);
}

.feature-card {
  display: grid;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(91, 213, 255, 0.16);
  color: var(--accent);
  font-size: 1.25rem;
}

.cta {
  padding: 3rem 0 4rem;
}

.cta-box {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  border-radius: 30px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.18);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.cta-box p {
  margin: 0.8rem 0 0;
  color: rgba(255,255,255,0.85);
  max-width: 40rem;
}

.site-footer {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--primary-dark);
}

@media (max-width: 900px) {
  .header-inner {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand img {
    max-height: 110px;
    width: auto;
  }

  .mobile-menu-button {
    margin-left: 0.75rem;
    flex: 0 0 auto;
    order: 2;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    background: rgba(241, 245, 255, 0.95);
    color: var(--primary-dark);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    font-size: 1.5rem;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 0;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100vh;
    gap: 0.75rem;
    display: none;
    padding: 5rem 0.9rem 1.4rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(22px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .site-nav.open {
    display: flex;
    animation: slideDown 220ms ease-out;
  }

  .site-nav a {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(241, 245, 255, 0.95);
    color: var(--text);
    font-weight: 700;
    border-bottom: none;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .site-nav a:hover {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-dark);
    transform: translateX(2px);
  }

  .nav-dropdown {
    width: 100%;
  }

  .drop-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(241, 245, 255, 0.95);
    color: var(--text);
    border: none;
    text-align: left;
  }

  .drop-toggle .chevron {
    transition: transform 0.2s ease;
  }

  .nav-dropdown.open .chevron {
    transform: rotate(180deg);
  }

  .dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    box-shadow: none;
    padding: 0.75rem;
    margin-top: 0.75rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .nav-dropdown:focus-within .dropdown-panel,
  .nav-dropdown.open .dropdown-panel {
    display: grid;
  }

  .dropdown-panel a {
    color: var(--text);
    background: rgba(241, 245, 255, 0.95);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
  }

  .dropdown-panel a:hover {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-dark);
    transform: translateX(2px);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-menu-actions {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .site-nav.open .mobile-menu-actions {
    display: flex;
  }

  html.menu-open,
  body.menu-open {
    height: 100%;
    overflow: hidden;
  }

  .dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    max-height: calc(100vh - 18rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: none;
    padding: 0.75rem;
    margin-top: 0.75rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .dropdown-panel a {
    color: #f3f7ff;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  }

  .dropdown-panel a:hover {
    background: rgba(47, 107, 255, 0.24);
    transform: translateX(2px);
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero p {
    max-width: 100%;
  }

  .hero-actions,
  .hero-login {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .card-button {
    width: 100%;
  }

  .section-header,
  .cta-box,
  .login-card {
    width: 100%;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1.5rem));
  }

  .header-inner {
    padding: 0.50 rem 0;
  }

  .brand img {
    max-height: 80px;
  }

  .site-nav {
    width: calc(100% - 1.5rem);
    margin: 0.75rem auto 0;
    padding: 0.85rem;
  }

  .hero {
    padding: 2.5rem 0 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .card,
  .feature-card,
  .login-card,
  .cta-box {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* Sertifikasi Page Specific Styles */
.cert-hero {
  padding: 4rem 0 3rem;
  background: #f8fafc;
}
.cert-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cert-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}
.cert-hero-content h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #334155;
  font-weight: 500;
}
.cert-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 320px;
}
.cert-btn {
  justify-content: flex-start;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background: #007bff;
  color: white;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.cert-btn .icon {
  margin-right: 1rem;
  font-size: 1.25rem;
}
.cert-btn:hover {
  background: #0056b3;
  color: white;
}

.cert-hero-image img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cert-jenis {
  background: #ffffff;
  padding: 4rem 0;
}
.cert-jenis h2 {
  font-size: 2rem;
  margin: 0;
}
.cert-jenis p {
  color: #64748b;
  margin-top: 0.5rem;
}
.divider {
  width: 60px;
  height: 2px;
  background: #d4d4d8;
  margin: 1.5rem auto;
  position: relative;
}
.divider::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border: 2px solid #eab308;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fdfdfd;
  border-radius: 8px;
  padding: 3rem 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.cert-item h3 {
  color: #374151;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}
.cert-item p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.cert-link {
  color: #0ea5e9;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.cert-link:hover {
  text-decoration: underline;
}
.cert-icon {
  width: 72px;
  height: 72px;
  background-color: #0ea5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-icon svg {
  width: 36px;
  height: 36px;
  fill: white;
}

.cert-faq {
  background: #f8fafc;
  padding: 4rem 0;
}
.faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-item {
  border-bottom: 1px solid #f1f5f9;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item summary {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #334155;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  background: #e2e8f0;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
}
.faq-item[open] summary::after {
  content: '-';
}
.faq-content {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .cert-hero-inner {
    grid-template-columns: 1fr;
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

/* PSDA Page Styles */
.psda-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  padding: 5rem 0 7rem;
  color: white;
  border-bottom-left-radius: 50% 15%;
  border-bottom-right-radius: 50% 15%;
}
.psda-banner-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.psda-banner-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
  flex-shrink: 0;
}
.psda-banner-text h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.psda-banner-text h2 {
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: 0.3rem;
  margin-left: 0;
  color: #cbd5e1;
}

.psda-content-section {
  padding: 0 0 4rem;
  background: #ffffff;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.psda-header {
  text-align: center;
  margin-bottom: 3rem;
}
.psda-header h2 {
  color: #1e293b;
  font-size: 2rem;
}
.psda-header-icon {
  margin-top: 1rem;
  position: relative;
  display: inline-block;
}
.psda-header-icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #fcd34d;
  margin-top: 1rem;
  border-radius: 2px;
}

.psda-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.psda-card-header {
  background: #f8fafc;
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.1rem;
}
.psda-card-body {
  padding: 1.5rem;
  color: #475569;
  line-height: 1.7;
}
.psda-card-body ol {
  padding-left: 1.5rem;
  margin-bottom: 0;
}
.psda-card-body ol li {
  margin-bottom: 0.5rem;
}
.psda-card-body p {
  margin-top: 0;
}

.psda-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

/* Form Registrasi */
.reg-container {
  background: #f8fafc;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid #e2e8f0;
}
.reg-section-title {
  color: #f59e0b;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}
.reg-section-title:first-child {
  margin-top: 0;
}
.reg-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.reg-col {
  flex: 1;
  min-width: 250px;
}
.reg-group {
  margin-bottom: 1.5rem;
}
.reg-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #334155;
}
.reg-input, .reg-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.reg-input:focus, .reg-select:focus {
  outline: none;
  border-color: #f59e0b;
}
.reg-help {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.4rem;
  display: block;
}
.reg-file-drop {
  border: 2px dashed #f59e0b;
  background: #fdfbf7;
  padding: 2rem;
  text-align: center;
  border-radius: 4px;
  color: #f59e0b;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.reg-file-drop:hover {
  background: #fef3c7;
}
.reg-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #475569;
}
.reg-checkbox-group input {
  width: 18px;
  height: 18px;
}
.reg-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}
.reg-btn-secondary {
  background: white;
  color: #f59e0b;
  border: 1px solid #f59e0b;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.reg-btn-primary {
  background: #f59e0b;
  color: white;
  border: 1px solid #f59e0b;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.reg-alert {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #92400e;
  font-size: 0.95rem;
}
