    :root {
      --primary: #0b4ea2;
      --primary-dark: #073b7a;
      --primary-soft: #eaf3ff;
      --secondary: #16a34a;
      --accent: #facc15;
      --text: #102033;
      --muted: #64748b;
      --border: #e2e8f0;
      --bg: #f8fafc;
      --white: #ffffff;
      --danger: #dc2626;
      --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
      --radius: 22px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin-inline: auto;
    }

    .topbar {
      background: var(--primary-dark);
      color: #dbeafe;
      font-size: 14px;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 10px 0;
      flex-wrap: wrap;
    }

    .topbar-info,
    .topbar-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .topbar i {
      color: var(--accent);
      margin-right: 6px;
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }

    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 260px;
    }

    .brand-logo {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: grid;
      place-items: center;
      color: var(--white);
      box-shadow: 0 12px 24px rgba(11, 78, 162, 0.22);
      overflow: hidden;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand-text strong {
      display: block;
      font-size: 17px;
      line-height: 1.2;
      color: var(--primary-dark);
    }

    .brand-text span {
      font-size: 13px;
      color: var(--muted);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-menu a {
      display: inline-flex;
      align-items: center;
      padding: 10px 13px;
      border-radius: 999px;
      color: #334155;
      font-weight: 600;
      font-size: 14px;
      transition: 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      background: var(--primary-soft);
      color: var(--primary);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s ease;
      font-size: 14px;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #1976d2);
      color: var(--white);
      box-shadow: 0 12px 26px rgba(11, 78, 162, 0.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(11, 78, 162, 0.28);
    }

    .btn-outline {
      background: var(--white);
      color: var(--primary);
      border: 1px solid #bfdbfe;
    }

    .btn-outline:hover {
      background: var(--primary-soft);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--white);
      color: var(--primary);
      font-size: 20px;
      cursor: pointer;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 30%),
        linear-gradient(135deg, #eff6ff 0%, #ffffff 45%, #f0fdf4 100%);
      padding: 78px 0 56px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: auto -120px -210px auto;
      width: 420px;
      height: 420px;
      border-radius: 999px;
      background: rgba(11, 78, 162, 0.08);
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 42px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid #dbeafe;
      border-radius: 999px;
      color: var(--primary);
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.06;
      letter-spacing: -0.04em;
      color: #0f172a;
      margin-bottom: 18px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      font-size: 18px;
      color: #475569;
      max-width: 620px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: #334155;
      font-weight: 600;
      font-size: 14px;
    }

    .hero-note span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .hero-note i {
      color: var(--secondary);
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(226, 232, 240, 0.9);
      border-radius: 30px;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .announcement {
      background: var(--primary);
      color: var(--white);
      border-radius: 24px;
      padding: 22px;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
    }

    .announcement::after {
      content: "SPMB";
      position: absolute;
      right: -8px;
      bottom: -24px;
      color: rgba(255, 255, 255, 0.09);
      font-size: 78px;
      font-weight: 900;
      letter-spacing: -6px;
    }

    .announcement small {
      color: #bfdbfe;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .announcement h3 {
      font-size: 25px;
      margin: 8px 0;
    }

    .announcement p {
      color: #dbeafe;
      margin: 0;
      font-size: 15px;
    }

    .login-box {
      display: grid;
      gap: 12px;
      background: var(--white);
      border-radius: 24px;
      padding: 20px;
      border: 1px solid var(--border);
    }

    .login-box h4 {
      font-size: 18px;
      color: var(--primary-dark);
    }

    .form-group {
      display: grid;
      gap: 7px;
    }

    .form-group label {
      font-size: 13px;
      font-weight: 700;
      color: #334155;
    }

    .form-control {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px 14px;
      outline: none;
      font: inherit;
      background: #f8fafc;
      transition: 0.2s ease;
    }

    .form-control:focus {
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(11, 78, 162, 0.08);
    }

    section {
      padding: 70px 0;
    }

    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 38px;
    }

    .section-header .eyebrow {
      color: var(--primary);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 13px;
      margin-bottom: 8px;
    }

    .section-header h2 {
      font-size: clamp(28px, 4vw, 42px);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .section-header p {
      color: var(--muted);
      font-size: 16px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .stat-card,
    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
    }

    .stat-card i {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary);
      margin-bottom: 14px;
      font-size: 18px;
    }

    .stat-card strong {
      display: block;
      font-size: 30px;
      color: #0f172a;
      line-height: 1;
    }

    .stat-card span {
      color: var(--muted);
      font-weight: 600;
      font-size: 14px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .step-card {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
    }

    .step-number {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary), #2563eb);
      color: var(--white);
      font-weight: 800;
      margin-bottom: 18px;
    }

    .step-card h3,
    .card h3 {
      font-size: 19px;
      margin-bottom: 9px;
      color: #0f172a;
    }

    .step-card p,
    .card p {
      color: var(--muted);
      font-size: 15px;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .program-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      transition: 0.2s ease;
    }

    .program-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .program-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: 22px;
      margin-bottom: 16px;
    }

    .program-card h3 {
      font-size: 19px;
      margin-bottom: 8px;
    }

    .program-card p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 14px;
    }

    .program-card ul {
      list-style: none;
      display: grid;
      gap: 8px;
      color: #475569;
      font-size: 14px;
    }

    .program-card li::before {
      content: "✓";
      color: var(--secondary);
      font-weight: 900;
      margin-right: 8px;
    }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: start;
    }

    .timeline {
      display: grid;
      gap: 14px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
    }

    .timeline-date {
      font-weight: 800;
      color: var(--primary);
    }

    .timeline-content h4 {
      margin-bottom: 4px;
      color: #0f172a;
    }

    .timeline-content p {
      color: var(--muted);
      font-size: 14px;
    }

    .requirements {
      display: grid;
      gap: 12px;
    }

    .requirement-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px;
      background: #f8fafc;
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    .requirement-item i {
      color: var(--secondary);
      margin-top: 4px;
    }

    .notice {
      background: linear-gradient(135deg, #fff7ed, #fefce8);
      border: 1px solid #fde68a;
      border-radius: var(--radius);
      padding: 22px;
      color: #713f12;
    }

    .notice h3 {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 8px;
    }

    .faq {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
    }

    .faq-button {
      width: 100%;
      border: 0;
      background: transparent;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      font: inherit;
      font-weight: 800;
      color: #0f172a;
      cursor: pointer;
    }

    .faq-content {
      display: none;
      padding: 0 20px 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.open .faq-content {
      display: block;
    }

    .faq-item.open .faq-button i {
      transform: rotate(180deg);
    }

    .cta {
      background: linear-gradient(135deg, var(--primary), #0f766e);
      color: var(--white);
      padding: 54px 0;
    }

    .cta-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .cta h2 {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
    }

    .cta p {
      color: #dbeafe;
      max-width: 640px;
    }

    .cta .btn {
      background: var(--white);
      color: var(--primary);
    }

    footer {
      background: #07172f;
      color: #cbd5e1;
      padding: 54px 0 22px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
      gap: 28px;
      margin-bottom: 32px;
    }

    .footer-title {
      color: var(--white);
      font-weight: 800;
      margin-bottom: 14px;
      font-size: 17px;
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-brand {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 14px;
    }

    .footer-brand .brand-logo {
      width: 48px;
      height: 48px;
      box-shadow: none;
    }

    .footer-bottom {
      border-top: 1px solid rgba(148, 163, 184, 0.2);
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 14px;
      color: #94a3b8;
    }

    .back-to-top {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 46px;
      height: 46px;
      border-radius: 16px;
      border: 0;
      background: var(--primary);
      color: var(--white);
      box-shadow: var(--shadow);
      cursor: pointer;
      display: none;
      z-index: 999;
    }

    .back-to-top.show {
      display: grid;
      place-items: center;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .split,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid,
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .program-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 820px) {
      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .nav-menu {
        position: absolute;
        top: 87px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow);
      }

      .nav-menu.show {
        display: flex;
      }

      .nav-menu a {
        border-radius: 14px;
      }

      .nav-actions .btn-outline {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .topbar .container {
        align-items: flex-start;
      }

      .brand {
        min-width: auto;
      }

      .brand-text strong {
        font-size: 15px;
      }

      .brand-text span {
        font-size: 12px;
      }

      .hero {
        padding: 48px 0 36px;
      }

      .stats-grid,
      .steps,
      .program-grid {
        grid-template-columns: 1fr;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .nav-actions .btn-primary {
        display: none;
      }

      section {
        padding: 52px 0;
      }
    }
	
/* =====================================================
   CEK STATUS PENDAFTARAN
===================================================== */

.status-page {
    padding: 70px 0;
    background: #f8fafc;
}

.status-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.status-empty-card {
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.status-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: #fee2e2;
    color: #991b1b;
    font-size: 32px;
}

.status-info-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.status-info-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.status-info-list span {
    color: var(--muted);
    font-weight: 700;
}

.status-info-list strong {
    color: #0f172a;
    text-align: right;
}

.status-badge-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.status-badge {
    border-radius: 18px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--border);
}

.status-badge span {
    font-weight: 800;
}

.status-badge.success {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.status-badge.warning {
    background: #fef3c7;
    color: #92400e;
    border-color: #fde68a;
}

.status-badge.danger {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.status-badge.info {
    background: #e0f2fe;
    color: #075985;
    border-color: #bae6fd;
}

.status-progress-box {
    margin-top: 18px;
}

.status-progress-track {
    height: 12px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.status-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.status-progress-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

.status-progress-meta strong {
    color: var(--primary);
}

@media (max-width: 860px) {
    .status-result-grid {
        grid-template-columns: 1fr;
    }

    .status-info-list div,
    .status-badge {
        align-items: flex-start;
        flex-direction: column;
    }

    .status-info-list strong {
        text-align: left;
    }
}

/* Tombol kecil pada statistik */
.stat-bottom-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}

.stat-bottom-row span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.stat-mini-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--primary);
    border: 1px solid #bfdbfe;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.stat-mini-action:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* =====================================================
   HALAMAN DAFTAR PENDAFTAR
===================================================== */

.pendaftar-page {
    padding: 70px 0;
    background: #f8fafc;
}

.pendaftar-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.pendaftar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.pendaftar-card-header h3 {
    color: #0f172a;
    font-size: 22px;
    margin-bottom: 4px;
}

.pendaftar-card-header p {
    color: var(--muted);
}

.pendaftar-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pendaftar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
}

.pendaftar-number {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 900;
}

.pendaftar-item span {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 2px;
}

.pendaftar-item strong {
    display: block;
    color: #0f172a;
    line-height: 1.35;
}

.pendaftar-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
    padding: 48px 20px;
    color: var(--muted);
}

.pendaftar-empty i {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 30px;
}

.pendaftar-empty h3 {
    color: #0f172a;
}

@media (max-width: 1024px) {
    .pendaftar-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pendaftar-card-header {
        align-items: stretch;
        flex-direction: column;
    }

    .pendaftar-card-header .btn {
        width: 100%;
    }

    .pendaftar-list {
        grid-template-columns: 1fr;
    }
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    flex: 0 0 auto;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 4px;
}

/* =====================================================
   HALAMAN KONTAK PANITIA
===================================================== */

.kontak-page {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(11, 78, 162, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.08), transparent 28%),
        #f8fafc;
}

.kontak-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.kontak-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 16px;
}

.kontak-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kontak-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 22px;
}

.kontak-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.badge-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-green {
    background: #dcfce7;
    color: #166534;
}

.badge-yellow {
    background: #fef3c7;
    color: #92400e;
}

.badge-purple {
    background: #ede9fe;
    color: #6d28d9;
}

.badge-gray {
    background: #f1f5f9;
    color: #475569;
}

.kontak-card-body h3 {
    color: #0f172a;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 4px;
}

.kontak-card-body p {
    color: var(--muted);
    font-size: 14px;
}

.kontak-info-list {
    display: grid;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.kontak-info-list div {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #334155;
    font-size: 14px;
    min-width: 0;
}

.kontak-info-list i {
    color: var(--primary);
    margin-top: 3px;
    flex: 0 0 auto;
}

.kontak-info-list a,
.kontak-info-list span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.kontak-info-list a {
    color: #0f172a;
    font-weight: 700;
}

.kontak-info-list a:hover {
    color: var(--primary);
}

.kontak-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kontak-actions .btn {
    flex: 1 1 130px;
}

.kontak-empty {
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 12px;
}

.kontak-empty-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 32px;
}

@media (max-width: 1024px) {
    .kontak-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .kontak-grid {
        grid-template-columns: 1fr;
    }

    .kontak-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .kontak-badge {
        white-space: normal;
    }

    .kontak-actions .btn {
        width: 100%;
        flex: 1 1 100%;
    }
}