        /* Page-specific styles that complement the design system */
        .page-header {
            background: var(--bg-gradient-primary);
            padding: var(--space-6) 0;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .page-header-content {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: var(--container-xl);
            margin: 0 auto;
            padding: 0 var(--space-6);
        }

        .page-title {
            color: white;
            font-size: var(--text-2xl);
            font-weight: var(--font-bold);
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }

        .back-btn {
            background: rgba(255,255,255,0.15);
            color: white;
            padding: var(--space-3) var(--space-5);
            border-radius: var(--radius-lg);
            font-weight: var(--font-medium);
            text-decoration: none;
            transition: all var(--transition-fast);
            backdrop-filter: blur(10px);
        }

        .back-btn:hover {
            background: rgba(255,255,255,0.25);
            color: white;
        }

        /* Info Banner */
        .info-banner {
            background: var(--bg-gradient-primary);
            border-radius: var(--radius-2xl);
            padding: var(--space-8);
            color: white;
            margin-bottom: var(--space-8);
            text-align: center;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }

        .info-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .info-banner h2 {
            color: white;
            font-size: var(--text-2xl);
            margin-bottom: var(--space-2);
            position: relative;
        }

        .info-banner p {
            color: rgba(255,255,255,0.9);
            margin-bottom: var(--space-4);
            position: relative;
        }

        .academic-year-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: var(--space-2) var(--space-5);
            border-radius: var(--radius-full);
            font-weight: var(--font-semibold);
            position: relative;
        }

        /* Form Grid */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-5);
        }

        /* Section Header */
        .section-header {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            padding-bottom: var(--space-4);
            border-bottom: 2px solid var(--neutral-100);
            margin-bottom: var(--space-5);
        }

        .section-header-icon {
            width: 48px;
            height: 48px;
            background: var(--bg-gradient-primary);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-xl);
        }

        .section-header h3 {
            color: var(--neutral-800);
            font-size: var(--text-xl);
        }

        /* Standard Card */
        .standard-card {
            background: var(--bg-secondary);
            border-radius: var(--radius-xl);
            overflow: hidden;
            margin-bottom: var(--space-5);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--neutral-100);
            transition: all var(--transition-base);
        }

        .standard-card:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .standard-header {
            background: var(--bg-gradient-primary);
            color: white;
            padding: var(--space-4) var(--space-5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .standard-header:hover {
            filter: brightness(1.1);
        }

        .standard-header h4 {
            font-size: var(--text-lg);
            font-weight: var(--font-semibold);
            color: white;
        }

        .standard-reward {
            display: inline-block;
            background: var(--accent-400);
            color: var(--neutral-900);
            padding: var(--space-1) var(--space-3);
            border-radius: var(--radius-full);
            font-size: var(--text-xs);
            font-weight: var(--font-bold);
            margin-top: var(--space-1);
        }

        .standard-score {
            background: rgba(255,255,255,0.2);
            padding: var(--space-2) var(--space-4);
            border-radius: var(--radius-full);
            font-weight: var(--font-bold);
            backdrop-filter: blur(10px);
        }

        .standard-body {
            padding: var(--space-5);
            display: none;
        }

        .standard-body.show {
            display: block;
        }

        /* Criteria Table */
        .criteria-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .criteria-table th {
            background: var(--neutral-50);
            padding: var(--space-4);
            text-align: right;
            font-weight: var(--font-semibold);
            color: var(--neutral-700);
            border-bottom: 2px solid var(--neutral-100);
        }

        .criteria-table th:first-child {
            border-radius: 0 var(--radius-lg) 0 0;
        }

        .criteria-table th:last-child {
            border-radius: var(--radius-lg) 0 0 0;
        }

        .criteria-table td {
            padding: var(--space-4);
            border-bottom: 1px solid var(--neutral-100);
            vertical-align: middle;
        }

        .criteria-table tr:last-child td {
            border-bottom: none;
        }

        .criteria-table tr:hover td {
            background: var(--neutral-50);
        }

        .indicator-text {
            font-size: var(--text-sm);
            color: var(--neutral-700);
            line-height: var(--leading-relaxed);
        }

        /* Rating Group */
        .rating-group {
            display: flex;
            gap: var(--space-2);
            justify-content: center;
        }

        .rating-btn {
            width: 44px;
            height: 44px;
            border: 2px solid var(--neutral-200);
            background: white;
            border-radius: var(--radius-lg);
            font-family: var(--font-primary);
            font-weight: var(--font-bold);
            font-size: var(--text-base);
            cursor: pointer;
            transition: all var(--transition-fast);
            color: var(--neutral-600);
        }

        .rating-btn:hover {
            border-color: var(--primary-400);
            background: var(--primary-50);
            color: var(--primary-600);
        }

        .rating-btn.selected {
            background: var(--bg-gradient-primary);
            color: white;
            border-color: transparent;
            box-shadow: var(--shadow-md);
        }

        .score-cell {
            font-weight: var(--font-bold);
            color: var(--primary-600);
            text-align: center;
            font-size: var(--text-lg);
            min-width: 60px;
        }

        /* Competency Section */
        .competency-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-4);
            padding: var(--space-5);
            border-bottom: 1px solid var(--neutral-100);
            transition: background var(--transition-fast);
        }

        .competency-item:last-child {
            border-bottom: none;
        }

        .competency-item:hover {
            background: var(--neutral-50);
        }

        .competency-info {
            flex: 1;
        }

        .competency-name {
            font-weight: var(--font-semibold);
            color: var(--neutral-800);
            margin-bottom: var(--space-1);
            font-size: var(--text-base);
        }

        .competency-desc {
            font-size: var(--text-sm);
            color: var(--neutral-500);
            line-height: var(--leading-relaxed);
        }

        .competency-weight {
            background: var(--primary-50);
            color: var(--primary-700);
            padding: var(--space-2) var(--space-4);
            border-radius: var(--radius-full);
            font-weight: var(--font-bold);
            font-size: var(--text-sm);
            flex-shrink: 0;
        }

        /* Output Cards */
        .output-card {
            background: var(--neutral-50);
            border-radius: var(--radius-xl);
            padding: var(--space-5);
            margin-bottom: var(--space-4);
            border: 1px solid var(--neutral-100);
        }

        .output-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-4);
            flex-wrap: wrap;
            gap: var(--space-3);
        }

        .output-title {
            font-weight: var(--font-semibold);
            color: var(--neutral-800);
        }

        .output-badge {
            background: var(--info-light);
            color: var(--info);
            padding: var(--space-1) var(--space-3);
            border-radius: var(--radius-full);
            font-size: var(--text-xs);
            font-weight: var(--font-medium);
        }

        .output-note {
            font-size: var(--text-sm);
            color: var(--neutral-500);
            margin-top: var(--space-3);
            padding-top: var(--space-3);
            border-top: 1px dashed var(--neutral-200);
        }

        /* Summary Section */
        .summary-section {
            background: var(--bg-gradient-primary);
            border-radius: var(--radius-2xl);
            padding: var(--space-8);
            color: white;
            margin-top: var(--space-8);
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }

        .summary-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .summary-section h3 {
            color: white;
            position: relative;
            margin-bottom: var(--space-6);
            text-align: center;
        }

        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: var(--space-5);
            position: relative;
        }

        .summary-item {
            text-align: center;
            padding: var(--space-5);
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius-xl);
            backdrop-filter: blur(10px);
        }

        .summary-item .value {
            font-size: var(--text-4xl);
            font-weight: var(--font-extrabold);
            font-family: var(--font-display);
        }

        .summary-item .label {
            font-size: var(--text-sm);
            opacity: 0.9;
            margin-top: var(--space-2);
        }

        /* Result Box */
        .result-box {
            margin-top: var(--space-6);
            padding: var(--space-6);
            border-radius: var(--radius-xl);
            text-align: center;
            position: relative;
        }

        .result-box.eligible {
            background: rgba(16, 185, 129, 0.2);
            border: 2px solid var(--success);
        }

        .result-box.not-eligible {
            background: rgba(239, 68, 68, 0.2);
            border: 2px solid var(--error);
        }

        .result-box h3 {
            color: white;
            font-size: var(--text-2xl);
            margin-bottom: var(--space-2);
        }

        .result-box p {
            color: rgba(255,255,255,0.9);
            margin: 0;
        }

        /* Approval Section */
        .approval-card {
            background: var(--bg-secondary);
            border-radius: var(--radius-xl);
            padding: var(--space-5);
            margin-bottom: var(--space-4);
            border-right: 4px solid var(--primary-500);
            box-shadow: var(--shadow-sm);
        }

        .approval-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-4);
            flex-wrap: wrap;
            gap: var(--space-3);
        }

        .approval-title {
            font-weight: var(--font-semibold);
            color: var(--neutral-800);
        }

        .approval-status {
            padding: var(--space-2) var(--space-4);
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: var(--font-medium);
        }

        .approval-status.pending {
            background: var(--warning-light);
            color: var(--warning);
        }

        .approval-status.approved {
            background: var(--success-light);
            color: var(--success);
        }

        .approval-status.rejected {
            background: var(--error-light);
            color: var(--error);
        }

        .approval-note {
            font-size: var(--text-sm);
            color: var(--neutral-500);
            margin-top: var(--space-3);
        }

        /* Buttons Container */
        .actions-container {
            display: flex;
            gap: var(--space-4);
            justify-content: center;
            flex-wrap: wrap;
            margin-top: var(--space-6);
        }

        /* Textarea */
        .form-textarea {
            width: 100%;
            padding: var(--space-4);
            border: 2px solid var(--neutral-200);
            border-radius: var(--radius-lg);
            font-family: var(--font-primary);
            font-size: var(--text-base);
            resize: vertical;
            min-height: 100px;
            transition: all var(--transition-fast);
        }

        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-500);
            box-shadow: 0 0 0 3px var(--primary-100);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header-content {
                flex-direction: column;
                gap: var(--space-4);
                text-align: center;
            }

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

            .competency-item {
                flex-direction: column;
                text-align: center;
            }

            .rating-group {
                flex-wrap: wrap;
            }

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

        /* Print styles */
        @media print {
            .page-header, .back-btn, .actions-container {
                display: none !important;
            }

            .card {
                break-inside: avoid;
            }

            .summary-section {
                background: #1e40af !important;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }
        }
